andyferris / Dictionaries.jl

An alternative interface for dictionaries in Julia, for improved productivity and performance
Other
282 stars 28 forks source link

Update Julia compat to v1.6 - 1.10 #138

Closed BenCurran98 closed 8 months ago

BenCurran98 commented 8 months ago

I've updated the Julia version compat here from being fixed to v1.6 to allowing versions 1.6-1.10 just so we get the latest updates on the later versions of Julia. Unsure if this fix was deliberate in the first place though to account for differences in some Base packages, so any feedback/help is appreciated :)

nhz2 commented 8 months ago

This will happen automatically. In the Project.toml, version "1.6" means "[1.6.0, 2.0.0)" so no need to change anything here.

https://pkgdocs.julialang.org/v1/compatibility/#Caret-specifiers

Also, check out https://pkgdocs.julialang.org/v1/compatibility/#Fixing-conflicts for how to fix the conflict in AcceleratedArrays.jl

BenCurran98 commented 8 months ago

This will happen automatically. In the Project.toml, version "1.6" means "[1.6.0, 2.0.0)" so no need to change anything here.

https://pkgdocs.julialang.org/v1/compatibility/#Caret-specifiers

Also, check out https://pkgdocs.julialang.org/v1/compatibility/#Fixing-conflicts for how to fix the conflict in AcceleratedArrays.jl

Ahh ok thanks for your help! :slightly_smiling_face: