-
Notifications
You must be signed in to change notification settings - Fork 367
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix CategoricalArrays.jl in Project.toml #2646
Conversation
Yes, that should work. |
So I understand the documentation in Pkg.jl should be fixed - right? |
Yes. Could you open an issue? |
@@ -24,7 +23,7 @@ Tables = "bd369af6-aec1-5ad0-b16a-f7cc5008161c" | |||
Unicode = "4ec0a83e-493e-50e2-b9ac-8f72acf5a8f5" | |||
|
|||
[compat] | |||
CategoricalArrays = "0.8.3, 0.9" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we really need 0.9?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we need 0.9.3 for unwrap
Thank you |
@KristofferC - I have a question regarding Project.toml.
If a package is in
[extras]
then is[compat]
entry allowed for it?In https://julialang.github.io/Pkg.jl/v1/toml-files/#The-[compat]-section it is stated that only
[deps]
entries are allowed in[compat]
, but maybe also[extras]
are allowed and the description given there should be fixed? Thank you!