Skip to content

Commit 5ea8ea5

Browse files
authored
Remove pytest upper bound pin (#2970)
## 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: - Gil Forsyth (https://github.com/gforsyth) URL: #2970
1 parent 735cd59 commit 5ea8ea5

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ dependencies:
3636
- pre-commit
3737
- pydata-sphinx-theme
3838
- pylibraft==26.4.*,>=0.0.0a0
39+
- pytest
3940
- pytest-cov
40-
- pytest<9.0.0
4141
- rapids-build-backend>=0.4.0,<0.5.0
4242
- rapids-dask-dependency==26.4.*,>=0.0.0a0
4343
- rapids-logger==0.2.*,>=0.0.0a0

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ dependencies:
3636
- pre-commit
3737
- pydata-sphinx-theme
3838
- pylibraft==26.4.*,>=0.0.0a0
39+
- pytest
3940
- pytest-cov
40-
- pytest<9.0.0
4141
- rapids-build-backend>=0.4.0,<0.5.0
4242
- rapids-dask-dependency==26.4.*,>=0.0.0a0
4343
- rapids-logger==0.2.*,>=0.0.0a0

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ dependencies:
3636
- pre-commit
3737
- pydata-sphinx-theme
3838
- pylibraft==26.4.*,>=0.0.0a0
39+
- pytest
3940
- pytest-cov
40-
- pytest<9.0.0
4141
- rapids-build-backend>=0.4.0,<0.5.0
4242
- rapids-dask-dependency==26.4.*,>=0.0.0a0
4343
- rapids-logger==0.2.*,>=0.0.0a0

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ dependencies:
3636
- pre-commit
3737
- pydata-sphinx-theme
3838
- pylibraft==26.4.*,>=0.0.0a0
39+
- pytest
3940
- pytest-cov
40-
- pytest<9.0.0
4141
- rapids-build-backend>=0.4.0,<0.5.0
4242
- rapids-dask-dependency==26.4.*,>=0.0.0a0
4343
- rapids-logger==0.2.*,>=0.0.0a0

dependencies.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,7 @@ dependencies:
401401
common:
402402
- output_types: [conda, requirements, pyproject]
403403
packages:
404-
- pytest<9.0.0
404+
- pytest
405405
- pytest-cov
406406
test_pylibraft:
407407
common:

python/pylibraft/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",
4343
"scipy",
4444
] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit ../../dependencies.yaml and run `rapids-dependency-file-generator`.

python/raft-dask/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ classifiers = [
3737

3838
[project.optional-dependencies]
3939
test = [
40+
"pytest",
4041
"pytest-cov",
41-
"pytest<9.0.0",
4242
] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit ../../dependencies.yaml and run `rapids-dependency-file-generator`.
4343

4444
[project.urls]

0 commit comments

Comments
 (0)