You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After the release of julia-1.11, we have encountered the following issue:
On julia-1.11, the lowest allowed version of StaticArrays is 1.5.0, whereas for julia-1.10 it is 1.0.0, see here.
If in my Project,toml, I set the [compat] of StaticArrays = "1", this works well on julia-1.10, but results in compatibility issues on julia-1.11:
ERROR: LoadError: Unsatisfiable requirements detected for package StaticArrays [90137ffa]:
StaticArrays [90137ffa] log:
├─possible versions are:0.8.0-1.9.7 or uninstalled
├─restricted to versions 1.0 by SolidStateDetectors [71e43887], leaving only versions:1.0.0-1.0.1
│ └─SolidStateDetectors [71e43887] log:
│ ├─possible versions are:0.10.2 or uninstalled
│ └─SolidStateDetectors [71e43887] is fixed to version 0.10.2
└─restricted by julia compatibility requirements to versions: [0.12.0-0.12.6, 1.5.0-1.9.7] or uninstalled — no versions left
Is there any way to keep the [compat] entry in the Project.toml at StaticArrays="1" and to have the tests on julia-1.10 run on StaticArrays@1.0.0 and the tests on julia-1.11 run on StaticArrays@1.5.0 (in both cases: the lowest version meeting the julia compatibility requirements)?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
After the release of
julia-1.11
, we have encountered the following issue:On
julia-1.11
, the lowest allowed version ofStaticArrays
is1.5.0
, whereas forjulia-1.10
it is1.0.0
, see here.If in my Project,toml, I set the
[compat]
ofStaticArrays = "1"
, this works well onjulia-1.10
, but results in compatibility issues onjulia-1.11
:Is there any way to keep the
[compat]
entry in the Project.toml atStaticArrays="1"
and to have the tests onjulia-1.10
run onStaticArrays@1.0.0
and the tests onjulia-1.11
run onStaticArrays@1.5.0
(in both cases: the lowest version meeting the julia compatibility requirements)?Beta Was this translation helpful? Give feedback.
All reactions