Skip to content

Commit a93792d

Browse files
authored
Pin pytest-asyncio>=0.17 (#46543)
1 parent 53827c0 commit a93792d

11 files changed

+11
-11
lines changed

.github/workflows/posix.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ jobs:
162162
shell: bash
163163
run: |
164164
# TODO: re-enable cov, its slowing the tests down though
165-
pip install Cython numpy python-dateutil pytz pytest>=6.0 pytest-xdist>=1.31.0 pytest-asyncio hypothesis>=5.5.3
165+
pip install Cython numpy python-dateutil pytz pytest>=6.0 pytest-xdist>=1.31.0 pytest-asyncio>=0.17 hypothesis>=5.5.3
166166
if: ${{ env.IS_PYPY == 'true' }}
167167

168168
- name: Build Pandas

azure-pipelines.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
/opt/python/cp38-cp38/bin/python -m venv ~/virtualenvs/pandas-dev && \
4646
. ~/virtualenvs/pandas-dev/bin/activate && \
4747
python -m pip install --no-deps -U pip wheel 'setuptools<60.0.0' && \
48-
pip install cython numpy python-dateutil pytz pytest pytest-xdist pytest-asyncio hypothesis && \
48+
pip install cython numpy python-dateutil pytz pytest pytest-xdist pytest-asyncio>=0.17 hypothesis && \
4949
python setup.py build_ext -q -j2 && \
5050
python -m pip install --no-build-isolation -e . && \
5151
pytest -m 'not slow and not network and not clipboard and not single_cpu' pandas --junitxml=test-data.xml"

ci/deps/actions-310-numpydev.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ dependencies:
99
- pytest-cov
1010
- pytest-xdist>=1.31
1111
- hypothesis>=5.5.3
12-
- pytest-asyncio
12+
- pytest-asyncio>=0.17
1313

1414
# pandas dependencies
1515
- python-dateutil

ci/deps/actions-310.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ dependencies:
1111
- pytest-xdist>=1.31
1212
- hypothesis>=5.5.3
1313
- psutil
14-
- pytest-asyncio
14+
- pytest-asyncio>=0.17
1515
- boto3
1616

1717
# required dependencies

ci/deps/actions-38-downstream_compat.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ dependencies:
1212
- pytest-xdist>=1.31
1313
- hypothesis>=5.5.3
1414
- psutil
15-
- pytest-asyncio
15+
- pytest-asyncio>=0.17
1616
- boto3
1717

1818
# required dependencies

ci/deps/actions-38-minimum_versions.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ dependencies:
1313
- pytest-xdist>=1.31
1414
- hypothesis>=5.5.3
1515
- psutil
16-
- pytest-asyncio
16+
- pytest-asyncio>=0.17
1717
- boto3
1818

1919
# required dependencies

ci/deps/actions-38.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ dependencies:
1111
- pytest-xdist>=1.31
1212
- hypothesis>=5.5.3
1313
- psutil
14-
- pytest-asyncio
14+
- pytest-asyncio>=0.17
1515
- boto3
1616

1717
# required dependencies

ci/deps/actions-39.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ dependencies:
1111
- pytest-xdist>=1.31
1212
- hypothesis>=5.5.3
1313
- psutil
14-
- pytest-asyncio
14+
- pytest-asyncio>=0.17
1515
- boto3
1616

1717
# required dependencies

ci/deps/circle-38-arm64.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ dependencies:
1111
- pytest-xdist>=1.31
1212
- hypothesis>=5.5.3
1313
- psutil
14-
- pytest-asyncio
14+
- pytest-asyncio>=0.17
1515
- boto3
1616

1717
# required dependencies

environment.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ dependencies:
6969
- pytest>=6.0
7070
- pytest-cov
7171
- pytest-xdist>=1.31
72-
- pytest-asyncio
72+
- pytest-asyncio>=0.17
7373
- pytest-instafail
7474

7575
# downstream tests

requirements-dev.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ flask
4747
pytest>=6.0
4848
pytest-cov
4949
pytest-xdist>=1.31
50-
pytest-asyncio
50+
pytest-asyncio>=0.17
5151
pytest-instafail
5252
seaborn
5353
statsmodels

0 commit comments

Comments
 (0)