Skip to content

Commit 2a56468

Browse files
authored
Remove pytest upper bound pin (rapidsai#1867)
## Summary Refs rapidsai/build-planning#230 Removes the pytest `<9` upper bound pin. The pin was added as a workaround for a compatibility issue with pytest 9, which was resolved at the time of pytest 9's release (see rapidsai/cudf#20570 (comment)). Removing the pin allows pytest 9 to be used. Changes: - Update `dependencies.yaml`: remove the `<9.0.0` upper bound from `pytest`, leaving it as an unpinned dependency - Regenerate all derived files via `rapids-dependency-file-generator` Authors: - Vyas Ramasubramani (https://github.com/vyasr) Approvers: - Kyle Edwards (https://github.com/KyleFromNVIDIA) - James Lamb (https://github.com/jameslamb) URL: rapidsai#1867
1 parent ba7a136 commit 2a56468

6 files changed

Lines changed: 6 additions & 6 deletions

File tree

conda/environments/all_cuda-129_arch-aarch64.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ dependencies:
4040
- openblas
4141
- pre-commit
4242
- pylibraft==26.4.*,>=0.0.0a0
43+
- pytest
4344
- pytest-cov
44-
- pytest<9.0.0
4545
- rapids-build-backend>=0.4.0,<0.5.0
4646
- recommonmark
4747
- rust

conda/environments/all_cuda-129_arch-x86_64.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ dependencies:
4040
- openblas
4141
- pre-commit
4242
- pylibraft==26.4.*,>=0.0.0a0
43+
- pytest
4344
- pytest-cov
44-
- pytest<9.0.0
4545
- rapids-build-backend>=0.4.0,<0.5.0
4646
- recommonmark
4747
- rust

conda/environments/all_cuda-131_arch-aarch64.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ dependencies:
4141
- openblas
4242
- pre-commit
4343
- pylibraft==26.4.*,>=0.0.0a0
44+
- pytest
4445
- pytest-cov
45-
- pytest<9.0.0
4646
- rapids-build-backend>=0.4.0,<0.5.0
4747
- recommonmark
4848
- rust

conda/environments/all_cuda-131_arch-x86_64.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ dependencies:
4141
- openblas
4242
- pre-commit
4343
- pylibraft==26.4.*,>=0.0.0a0
44+
- pytest
4445
- pytest-cov
45-
- pytest<9.0.0
4646
- rapids-build-backend>=0.4.0,<0.5.0
4747
- recommonmark
4848
- rust

dependencies.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ dependencies:
382382
packages:
383383
- *cmake_ver
384384
- openblas
385-
- &pytest pytest<9.0.0
385+
- &pytest pytest
386386
docs:
387387
common:
388388
- output_types: [conda]

python/cuvs/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ classifiers = [
3737
[project.optional-dependencies]
3838
test = [
3939
"cupy-cuda13x>=13.6.0",
40+
"pytest",
4041
"pytest-cov",
41-
"pytest<9.0.0",
4242
"scikit-learn>=1.5",
4343
] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit ../../dependencies.yaml and run `rapids-dependency-file-generator`.
4444

0 commit comments

Comments
 (0)