Skip to content

Commit 94a19fd

Browse files
authored
Pin to pytest==7.* (#179)
Pytest 8 introduced breaking changes that `pytest-asyncio` is still in the process of resolving. See pytest-dev/pytest-asyncio#763. This pin should also also be done directly by `pytest-asyncio>=0.23.4`, but that version is still not available in conda-forge. Authors: - Peter Andreas Entschev (https://github.com/pentschev) Approvers: - Lawrence Mitchell (https://github.com/wence-) - Ray Douglass (https://github.com/raydouglass) URL: #179
1 parent ed7c281 commit 94a19fd

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ dependencies:
3333
- pkg-config
3434
- pre-commit
3535
- pynvml>=11.4.1
36-
- pytest
3736
- pytest-asyncio
3837
- pytest-rerunfailures
38+
- pytest==7.*
3939
- python>=3.9,<3.11
4040
- rapids-dask-dependency==24.4.*
4141
- rmm==24.4.*

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ dependencies:
3333
- pkg-config
3434
- pre-commit
3535
- pynvml>=11.4.1
36-
- pytest
3736
- pytest-asyncio
3837
- pytest-rerunfailures
38+
- pytest==7.*
3939
- python>=3.9,<3.11
4040
- rapids-dask-dependency==24.4.*
4141
- rmm==24.4.*

dependencies.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ dependencies:
241241
packages:
242242
- cloudpickle
243243
- *numba
244-
- pytest
244+
- pytest==7.*
245245
- pytest-asyncio
246246
- pytest-rerunfailures
247247
- rapids-dask-dependency==24.4.*
@@ -250,7 +250,7 @@ dependencies:
250250
- output_types: [conda, requirements, pyproject]
251251
packages:
252252
- *numpy
253-
- pytest
253+
- pytest==7.*
254254
depends_on_cupy:
255255
common:
256256
- output_types: conda

python/distributed-ucxx/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ docs = [
4040
]
4141
test = [
4242
"numpy>=1.21",
43-
"pytest",
43+
"pytest==7.*",
4444
] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit ../../dependencies.yaml and run `rapids-dependency-file-generator`.
4545

4646
[project.urls]

python/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,9 @@ test = [
4444
"cudf==24.4.*",
4545
"cupy-cuda11x>=12.0.0",
4646
"numba>=0.57.1",
47-
"pytest",
4847
"pytest-asyncio",
4948
"pytest-rerunfailures",
49+
"pytest==7.*",
5050
"rapids-dask-dependency==24.4.*",
5151
] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit ../dependencies.yaml and run `rapids-dependency-file-generator`.
5252

0 commit comments

Comments
 (0)