-
Notifications
You must be signed in to change notification settings - Fork 50
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
Julia version in Project.toml #208
Comments
Any updates on this issue? Is there a reason why we can't just set the compat to |
Base Julia ships its own mbedtls libraries, which conflict with those provided by MbedTLS.jl. To avoid mismatched libraries, we have to sync the mbedtls version that Base Julia and MbedTLS.jl provide. In 1.2, Base Julia bumped mbedtls libraries, so a corresponding MbedTLS.jl release was made, also bumping the versions. I made this PR: JuliaLang/julia#32706 to include MbedTLS.jl as a stdlib to Base Julia since they have to be kept so closely synced. |
In retrospect ideally would have not bumped the minor version for that, Should we make a julia 1.0 compatible 0.7.x version? |
Looks like in the Project.toml the compatible julia version was fixed to 1.2, this creates some dependency problems with packages that depend on MbedTLS. Is it possible to set the version to
julia = '>= 1.1.0
to avoid compatibility issues?The text was updated successfully, but these errors were encountered: