-
Notifications
You must be signed in to change notification settings - Fork 27
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
Add support for Python 3.11, require NumPy 1.23+ #199
Conversation
Since Python 3.11 requires NumPy 1.23 at a minimum ( rapidsai/cucim#704 (comment) ), should we update lines like these? ucxx/conda/recipes/ucxx/meta.yaml Line 227 in e2144ce
Line 224 in e2144ce
|
I noticed Python 3.11 tests were failing. This repo is a little different than other RAPIDS repos, because it builds for each Python version using a matrix in conda-build. I added the missing entry in aadafbe. |
Maybe we need an "add new Python version" script for projects |
/merge |
Thanks all! 🙏 |
Description
Contributes to rapidsai/build-planning#3
This PR adds support for Python 3.11.
It also bumps uses of
NumPy
tonumpy>=1.23
, see rapidsai/build-planning#3 (comment).Notes for Reviewers
This is part of ongoing work to add Python 3.11 support across RAPIDS.
The Python 3.11 CI workflows introduced in rapidsai/shared-workflows#176 are optional... they are not yet required to run successfully for PRs to be merged.
This PR can be merged once all jobs are running successfully (including the non-required jobs for Python 3.11). The CI logs should be verified that the jobs are building and testing with Python 3.11.
See rapidsai/shared-workflows#176 for more details.