Skip to content

Commit 851d3ba

Browse files
authored
Bump Python requirements in setup.cfg and rmm_dev.yml (rapidsai#982)
Authors: - Ashwin Srinath (https://github.com/shwina) Approvers: - Bradley Dice (https://github.com/bdice) - Vyas Ramasubramani (https://github.com/vyasr) - Leo Fang (https://github.com/leofang) - AJ Schmidt (https://github.com/ajschmidt8) URL: rapidsai#982
1 parent 374d551 commit 851d3ba

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ conda install -c nvidia -c rapidsai -c conda-forge \
4242
We also provide [nightly Conda packages](https://anaconda.org/rapidsai-nightly) built from the HEAD
4343
of our latest development branch.
4444

45-
Note: RMM is supported only on Linux, and with Python versions 3.7 and later.
45+
Note: RMM is supported only on Linux, and only tested with Python versions 3.8 and 3.9.
46+
4647

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

conda/environments/rmm_dev_cuda11.5.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ dependencies:
1010
- flake8=3.8.3
1111
- black=19.10
1212
- isort=5.6.4
13-
- python>=3.7,<3.9
13+
- python>=3.8,<3.10
1414
- numba>=0.49
1515
- numpy
1616
- cffi>=1.10.0

conda/environments/rmm_dev_cuda11.6.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ dependencies:
1010
- flake8=3.8.3
1111
- black=19.10
1212
- isort=5.6.4
13-
- python>=3.7,<3.9
13+
- python>=3.8,<3.10
1414
- numba>=0.49
1515
- numpy
1616
- cffi>=1.10.0

python/setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,4 @@ packages = find:
5454
install_requires =
5555
numpy
5656
numba>=0.49
57-
python_requires = >=3.7,<3.9
57+
python_requires = >=3.8

python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
"Topic :: Scientific/Engineering",
1919
"License :: OSI Approved :: Apache Software License",
2020
"Programming Language :: Python",
21-
"Programming Language :: Python :: 3.7",
2221
"Programming Language :: Python :: 3.8",
22+
"Programming Language :: Python :: 3.9",
2323
],
2424
# Include the separately-compiled shared library
2525
extras_require={"test": ["pytest", "pytest-xdist"]},

0 commit comments

Comments
 (0)