-
Notifications
You must be signed in to change notification settings - Fork 33
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
CI: drop python 3.9, numpy 1.21 #266
base: main
Are you sure you want to change the base?
Conversation
Drop python 3.9 and 3.10, drop numpy 1.21 Not adding python 3.13 because ndonnx only supports 3.12 at the moment.
scikit-learn have now dropped 3.9 and 1.21 |
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 test with NuPy 1.22?
# Min version of dask we need dropped support for Python 3.9 | ||
# There is no numpy git tip for Python 3.9 or 3.10 | ||
python-version: ${{ (inputs.package-name == 'dask' && fromJson('[''3.10'', ''3.11'', ''3.12'']')) || (inputs.package-name == 'numpy' && inputs.xfails-file-extra == '-dev' && fromJson('[''3.11'', ''3.12'']')) || fromJson('[''3.9'', ''3.10'', ''3.11'', ''3.12'']') }} | ||
python-version: ['3.11', '3.12', '3.13'] |
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.
No 3.10?
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.
Yes, as an attempt to trim the CI size a bit. Experience over the last couple of months is that there were no issues which were python version dependent.
Am planning to merge this next week if this looks reasonable to people. A possible contention point is the size of the CI matrix: this PR proposes to drop python 3.9 and 3.10 and numpy 1.21; this way we'll test on python 3.11, 3.12 and 3.13 x numpy 1.26, "latest released", and numpy-dev. Jax, ndonnx, dask and pytorch: no changes, we only test with the latest released version. |
The linked scikit-learn issue has a clear plan, which is nice. It just dropped Python 3.9, so dropping Python 3.10 here seems quite aggressive - and probably not necessary? If you want to reduce the CI matrix, just remove 3.11 instead while keeping the lowest-supported version. |
Similarly, I think we should be testing NumPy 1.22 as the min. supported by sklearn. |
I spoke to Olivier and Tim yesterday and suggested that there shouldn't be any problems with array-api-compat and array-api-extra dropping more aggressively than scikit-learn, now that they have written down some reasonable rules. This matters to them as we are very close to them vendoring both libraries: scikit-learn/scikit-learn#30340 |
For comparison, in array-api-extra we define the following test envs tests-numpy1 = ["py310", "tests", "numpy1"]
tests-py310 = ["py310", "tests"]
tests-py313 = ["py313", "tests"]
tests-backends = ["py310", "tests", "backends"]
tests-cuda = ["py310", "tests", "backends", "cuda-backends"] and use the non-CUDA envs in the CI matrix matrix:
environment: [tests-py310, tests-py313, tests-numpy1, tests-backends] Our |
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.
to clarify, I would like to see NumPy 1.22 tested before merging
Well, from past experience there was not much useful signal from keeping both numpy 1.21 and 1.26. All it did was a bit was a bit more churn to duplicate xfails for the two numpy versions. If we are to add 1.22, we can keep 1.21 just as well. |
How about 1.22 instead of 1.26? |
Honestly, I don't see much point. |
Well, I suppose we should ask the scikit-learn devs, as they are the 'users' of the NumPy 1.22 support. Does you foresee it being useful to catch things in array-api-compat CI before they propagate to array-api-extra or scikit-learn, @betatim? |
My 2 cents on NumPy 1.22 is that
FYI SPEC0 dropped NumPy 1.25 two days ago. For the record, I do not advocate being this much aggressive when SPEC0 will drop 1.26 three months from now. But asking final users to upgrade to the latest available 1.x should be painless for most. I just verified that NumPy 1.22 does have array-api-compat/array_api_compat/numpy/_aliases.py Lines 101 to 112 in b6900df
that said, I don't know (without running the unit tests) if anything else would still require a special code path. |
@@ -5,13 +5,11 @@ jobs: | |||
runs-on: ubuntu-latest | |||
strategy: | |||
matrix: | |||
python-version: ['3.9', '3.10', '3.11', '3.12'] | |||
numpy-version: ['1.21', '1.26', '2.0', 'dev'] | |||
python-version: ['3.10', '3.12'] |
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.
python-version: ['3.10', '3.12'] | |
python-version: ['3.10', '3.12', '3.13'] |
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.
3.12 testing can be dropped from CI?
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.
not if you want to test numpy 1.26 on the most recent python version it supports.
But yes, we could run on 3.12 for numpy 1.x and on 3.13 for everything else.
# NumPy 1.26 doesn't support Python 3.13. There doesn't seem to be a way | ||
# to put this in the numpy 1.26 config file. |
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.
Can't we just use an exclude:
directive like in tests.yml below?
We have asked and the clear answer was that scikit-learn won't be following SPEC 0 in its current form. They have written down concrete rules for dropping versions at https://scikit-learn.org/dev/developers/maintainer.html#guideline-for-bumping-minimum-versions-of-our-dependencies. I hope that SPEC 0 can be adjusted so that scikit-learn is compliant (perhaps at the Scientific Python summit this year), but I think preventing scikit-learn from using the latest versions of these libraries has the potential to be very problematic, for insignificant practical gain. |
Forget about 1.22 vs. 1.26. This policy implies that they commit to support NumPy 1.x until October 2027, when Python 3.12 will fall out of their 4 years window. By then, SPEC0 will recommend NumPy >=2.3. NEP29 first and SPEC0 then were written for a reason. I find it a bit baffling - not that one library can decide to diverge (to each the problems they choose for themselves) - but that other libraries, whose developers likely disagree with their decision, are asked to accommodate them. |
perhaps I am hoping for more of a compromise then :) |
I'm not sure I can add much here (sorry for being a few days late Lucas). scikit-learn will follow its policy for the next while. Both because it has been its inofficial policy for a long time and because getting agreement on making it official policy took some effort. Of course in the future things will get reconsidered and we left an escape hatch to drop things earlier if there is a good reason. Right now I think it will be hard to convince the rest of scikit-learn to accelerate the Numpy schedule because of a compat library that is used by an experimental feature of scikit-learn (at least I'm hard to convince). I think having a CI job that tests the oldest set of dependencies is worth having, and skipping intermediate versions is a good way to reduce CI matrix size. |
closes gh-230
This likely affects scikit-learn, scikit-learn/scikit-learn#30895 (comment)