-
Notifications
You must be signed in to change notification settings - Fork 116
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
Set minimum Julia version to 1.6 #514
Conversation
Currently the minimum version is 1.0, which is old and unsupported and makes development and addition of new features more difficult.
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.
maybe add nightly to CI?
Nightly is already in CI as the "CI-future" jobs |
ah - OK. In DataFrames.jl we have a bit different structure of CI file and I looked only at diff. |
Yeah the CI structure for this package is kind of strange, could be worth standardizing it at some point. |
In Julia 1.10, at-test_broken will error if the expression doesn't evaluate to a boolean value, making it consistent with at-test. We actually can fit the model here; the test passes with prior Julia versions only because the expression doesn't evaluate to a boolean.
I fixed the main CI failure on nightly, the nightly failure on Windows is unrelated and related to building TimeZones. |
* Set minimum Julia version to 1.6 Currently the minimum version is 1.0, which is old and unsupported and makes development and addition of new features more difficult. * Fix nightly CI In Julia 1.10, at-test_broken will error if the expression doesn't evaluate to a boolean value, making it consistent with at-test. We actually can fit the model here; the test passes with prior Julia versions only because the expression doesn't evaluate to a boolean. (cherry picked from commit 57669ef)
* Set minimum Julia version to 1.6 Currently the minimum version is 1.0, which is old and unsupported and makes development and addition of new features more difficult. * Fix nightly CI In Julia 1.10, at-test_broken will error if the expression doesn't evaluate to a boolean value, making it consistent with at-test. We actually can fit the model here; the test passes with prior Julia versions only because the expression doesn't evaluate to a boolean. (cherry picked from commit 57669ef) Co-authored-by: Alex Arslan <[email protected]>
Currently the minimum version is 1.0, which is old and unsupported and makes development and addition of new features more difficult. I suspect this won't be too controversial.