Skip to content

Commit

Permalink
Pin max version of cuda-python to 11.7 (#1062)
Browse files Browse the repository at this point in the history
This PR pins max version of `cuda-python` to `11.7`

Authors:
  - GALI PREM SAGAR (https://github.com/galipremsagar)

Approvers:
  - Ashwin Srinath (https://github.com/shwina)
  - Jordan Jacobelli (https://github.com/Ethyling)

URL: #1062
  • Loading branch information
galipremsagar authored Jul 4, 2022
1 parent 8b86993 commit 6927e7d
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 7 deletions.
2 changes: 1 addition & 1 deletion conda/environments/rmm_dev_cuda11.5.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ dependencies:
- spdlog>=1.8.5,<1.9
- cython>=0.29,<0.30
- gcovr>=5.0
- cuda-python>=11.5,<12.0
- cuda-python>=11.5,<11.7.1
2 changes: 1 addition & 1 deletion conda/environments/rmm_dev_cuda11.6.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ dependencies:
- spdlog>=1.8.5,<1.9
- cython>=0.29,<0.30
- gcovr>=5.0
- cuda-python>=11.6,<12.0
- cuda-python>=11.6,11.7.1
4 changes: 2 additions & 2 deletions conda/recipes/rmm/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ requirements:
- {{ compiler('cuda') }} {{ cuda_version }}
- sysroot_{{ target_platform }} {{ sysroot_version }}
host:
- cuda-python >=11.5,<12.0
- cuda-python >=11.5,<11.7.1
- cudatoolkit {{ cuda_version }}.*
- cython >=0.29,<0.30
- librmm {{ version }}.*
Expand All @@ -38,7 +38,7 @@ requirements:
- setuptools
- spdlog>=1.8.5,<2.0.0a0
run:
- cuda-python >=11.5,<12.0
- cuda-python >=11.5,<11.7.1
- numba >=0.49
- numpy >=1.19
- {{ pin_compatible('cudatoolkit', max_pin='x', min_pin='x') }}
Expand Down
2 changes: 1 addition & 1 deletion python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ requires = [
"scikit-build>=0.13.1",
"cmake>=3.20.1,!=3.23.0",
"ninja",
"cuda-python>=11.5,<12.0",
"cuda-python>=11.5,<11.7.1",
]

[tool.black]
Expand Down
2 changes: 1 addition & 1 deletion python/setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ skip=
[options]
packages = find:
install_requires =
cuda-python>=11.5,<12.0
cuda-python>=11.5,<11.7.1
numpy>=1.19
numba>=0.49
python_requires = >=3.8
6 changes: 5 additions & 1 deletion python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@
)
},
cmdclass=versioneer.get_cmdclass(),
install_requires=["cuda-python>=11.5,<12.0", "numpy>=1.19", "numba>=0.49"],
install_requires=[
"cuda-python>=11.5,<11.7.1",
"numpy>=1.19",
"numba>=0.49",
],
zip_safe=False,
)

0 comments on commit 6927e7d

Please sign in to comment.