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
This doesn't directly answer your question, but your compat entries are not upper-bounded. In Julia/Pkg, the comma means OR, so something like >= 1.2.3, < 2.0 means "at least 1.2.3 OR less than 2.0", which of course covers the entire universe of version numbers.
So, instead of writing >= 1.2.3, 2.0, you should write one of these instead:
^1.2.3
1.2.3 (this is exactly equivalent to ^1.2.3)
1.2.3 - 2.0.0
I recommend using ^1.2.3 or 1.2.3, instead of using the hyphen.
If you do choose to use the hyphen, make sure you have a space before the hyphen and a space after the hyphen.
Error while trying to register: "Julia version < 0.7 not allowed in [compat]"
Steps I've Taken:
Additional Information:
The text was updated successfully, but these errors were encountered: