Skip to content

Commit 0c16507

Browse files
authored
Add support for Python 3.10. (rapidsai#1166)
This PR adds support for Python 3.10. This set of changes aligns with the behavior I'd like to see across RAPIDS for the Python version changes described in RAPIDS Support Notice (RSN) 22 and 23. rapidsai/docs#310 Authors: - Bradley Dice (https://github.com/bdice) Approvers: - Mark Harris (https://github.com/harrism) URL: rapidsai#1166
1 parent e324ace commit 0c16507

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ conda install -c rapidsai -c conda-forge -c nvidia \
4848
We also provide [nightly Conda packages](https://anaconda.org/rapidsai-nightly) built from the HEAD
4949
of our latest development branch.
5050

51-
Note: RMM is supported only on Linux, and only tested with Python versions 3.8 and 3.9.
51+
Note: RMM is supported only on Linux, and only tested with Python versions 3.8 and 3.10.
5252

5353

5454
Note: The RMM package from Conda requires building with GCC 9 or later. Otherwise, your application may fail to build.

python/setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ def get_versions():
3333
"Programming Language :: Python",
3434
"Programming Language :: Python :: 3.8",
3535
"Programming Language :: Python :: 3.9",
36+
"Programming Language :: Python :: 3.10",
3637
],
3738
# Include the separately-compiled shared library
3839
extras_require={"test": ["pytest"]},

0 commit comments

Comments
 (0)