Skip to content

Commit 7a4a7bf

Browse files
authored
DEPS: Bump misc testing dependencies (#59257)
* DEPS: Bump misc testing dependencies * pyqt alignment
1 parent 71cacde commit 7a4a7bf

21 files changed

+61
-61
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
/opt/python/cp311-cp311/bin/python -m venv ~/virtualenvs/pandas-dev
5555
. ~/virtualenvs/pandas-dev/bin/activate
5656
python -m pip install --no-cache-dir -U pip wheel setuptools meson-python==0.13.1 meson[ninja]==1.2.1
57-
python -m pip install --no-cache-dir versioneer[toml] cython numpy python-dateutil pytz pytest>=7.3.2 pytest-xdist>=2.2.0 hypothesis>=6.46.1
57+
python -m pip install --no-cache-dir versioneer[toml] cython numpy python-dateutil pytz pytest>=7.3.2 pytest-xdist>=3.4.0 hypothesis>=6.84.0
5858
python -m pip install --no-cache-dir --no-build-isolation -e . --config-settings=setup-args="--werror"
5959
python -m pip list --no-cache-dir
6060
export PANDAS_CI=1

.github/workflows/unit-tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ jobs:
227227
. ~/virtualenvs/pandas-dev/bin/activate
228228
python -m pip install --no-cache-dir -U pip wheel setuptools meson[ninja]==1.2.1 meson-python==0.13.1
229229
python -m pip install numpy --config-settings=setup-args="-Dallow-noblas=true"
230-
python -m pip install --no-cache-dir versioneer[toml] cython python-dateutil pytz pytest>=7.3.2 pytest-xdist>=2.2.0 hypothesis>=6.46.1
230+
python -m pip install --no-cache-dir versioneer[toml] cython python-dateutil pytz pytest>=7.3.2 pytest-xdist>=3.4.0 hypothesis>=6.84.0
231231
python -m pip install --no-cache-dir --no-build-isolation -e . --config-settings=setup-args="--werror"
232232
python -m pip list --no-cache-dir
233233
export PANDAS_CI=1
@@ -265,7 +265,7 @@ jobs:
265265
/opt/python/cp311-cp311/bin/python -m venv ~/virtualenvs/pandas-dev
266266
. ~/virtualenvs/pandas-dev/bin/activate
267267
python -m pip install --no-cache-dir -U pip wheel setuptools meson-python==0.13.1 meson[ninja]==1.2.1
268-
python -m pip install --no-cache-dir versioneer[toml] cython numpy python-dateutil pytz pytest>=7.3.2 pytest-xdist>=2.2.0 hypothesis>=6.46.1
268+
python -m pip install --no-cache-dir versioneer[toml] cython numpy python-dateutil pytz pytest>=7.3.2 pytest-xdist>=3.4.0 hypothesis>=6.84.0
269269
python -m pip install --no-cache-dir --no-build-isolation -e . --config-settings=setup-args="--werror"
270270
python -m pip list --no-cache-dir
271271
@@ -339,7 +339,7 @@ jobs:
339339
python -m pip install --upgrade pip setuptools wheel meson[ninja]==1.2.1 meson-python==0.13.1
340340
python -m pip install --pre --extra-index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple numpy
341341
python -m pip install versioneer[toml]
342-
python -m pip install python-dateutil pytz tzdata cython hypothesis>=6.46.1 pytest>=7.3.2 pytest-xdist>=2.2.0 pytest-cov
342+
python -m pip install python-dateutil pytz tzdata cython hypothesis>=6.84.0 pytest>=7.3.2 pytest-xdist>=3.4.0 pytest-cov
343343
python -m pip install -ve . --no-build-isolation --no-index --no-deps --config-settings=setup-args="--werror"
344344
python -m pip list
345345
@@ -382,7 +382,7 @@ jobs:
382382
python -m pip install --upgrade pip setuptools wheel meson[ninja]==1.2.1 meson-python==0.13.1
383383
python -m pip install --pre --extra-index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple numpy cython
384384
python -m pip install versioneer[toml]
385-
python -m pip install python-dateutil pytz tzdata hypothesis>=6.46.1 pytest>=7.3.2 pytest-xdist>=2.2.0 pytest-cov
385+
python -m pip install python-dateutil pytz tzdata hypothesis>=6.84.0 pytest>=7.3.2 pytest-xdist>=3.4.0 pytest-cov
386386
python -m pip install -ve . --no-build-isolation --no-index --no-deps --config-settings=setup-args="--werror"
387387
python -m pip list
388388

.github/workflows/wheels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ jobs:
178178
shell: pwsh
179179
run: |
180180
$TST_CMD = @"
181-
python -m pip install hypothesis>=6.46.1 pytest>=7.3.2 pytest-xdist>=2.2.0;
181+
python -m pip install hypothesis>=6.84.0 pytest>=7.3.2 pytest-xdist>=3.4.0;
182182
python -m pip install `$(Get-Item pandas\wheelhouse\*.whl);
183183
python -c `'import pandas as pd; pd.test(extra_args=[`\"--no-strict-data-files`\", `\"-m not clipboard and not single_cpu and not slow and not network and not db`\"])`';
184184
"@

ci/deps/actions-310-minimum_versions.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ dependencies:
1515
# test dependencies
1616
- pytest>=7.3.2
1717
- pytest-cov
18-
- pytest-xdist>=2.2.0
19-
- pytest-localserver>=0.7.1
20-
- pytest-qt>=4.2.0
18+
- pytest-xdist>=3.4.0
19+
- pytest-localserver>=0.8.1
20+
- pytest-qt>=4.4.0
2121
- boto3
2222

2323
# required dependencies
@@ -32,7 +32,7 @@ dependencies:
3232
- fastparquet=2023.10.0
3333
- fsspec=2022.11.0
3434
- html5lib=1.1
35-
- hypothesis=6.46.1
35+
- hypothesis=6.84.0
3636
- gcsfs=2022.11.0
3737
- jinja2=3.1.2
3838
- lxml=4.9.2

ci/deps/actions-310.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,9 @@ dependencies:
1313
# test dependencies
1414
- pytest>=7.3.2
1515
- pytest-cov
16-
- pytest-xdist>=2.2.0
17-
- pytest-qt>=4.2.0
16+
- pytest-xdist>=3.4.0
17+
- pytest-localserver>=0.8.1
18+
- pytest-qt>=4.4.0
1819
- boto3
1920

2021
# required dependencies
@@ -29,7 +30,7 @@ dependencies:
2930
- fastparquet>=2023.10.0
3031
- fsspec>=2022.11.0
3132
- html5lib>=1.1
32-
- hypothesis>=6.46.1
33+
- hypothesis>=6.84.0
3334
- gcsfs>=2022.11.0
3435
- jinja2>=3.1.2
3536
- lxml>=4.9.2
@@ -60,4 +61,3 @@ dependencies:
6061
- adbc-driver-postgresql>=0.10.0
6162
- adbc-driver-sqlite>=0.8.0
6263
- tzdata>=2022.7
63-
- pytest-localserver>=0.7.1

ci/deps/actions-311-downstream_compat.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ dependencies:
1414
# test dependencies
1515
- pytest>=7.3.2
1616
- pytest-cov
17-
- pytest-xdist>=2.2.0
18-
- pytest-localserver>=0.7.1
19-
- pytest-qt>=4.2.0
17+
- pytest-xdist>=3.4.0
18+
- pytest-localserver>=0.8.1
19+
- pytest-qt>=4.4.0
2020
- boto3
2121

2222
# required dependencies
@@ -31,7 +31,7 @@ dependencies:
3131
- fastparquet>=2023.10.0
3232
- fsspec>=2022.11.0
3333
- html5lib>=1.1
34-
- hypothesis>=6.46.1
34+
- hypothesis>=6.84.0
3535
- gcsfs>=2022.11.0
3636
- jinja2>=3.1.2
3737
- lxml>=4.9.2

ci/deps/actions-311-numpydev.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ dependencies:
1313
# test dependencies
1414
- pytest>=7.3.2
1515
- pytest-cov
16-
- pytest-xdist>=2.2.0
17-
- hypothesis>=6.46.1
16+
- pytest-xdist>=3.4.0
17+
- hypothesis>=6.84.0
1818

1919
# pandas dependencies
2020
- python-dateutil

ci/deps/actions-311-pyarrownightly.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ dependencies:
1313
# test dependencies
1414
- pytest>=7.3.2
1515
- pytest-cov
16-
- pytest-xdist>=2.2.0
17-
- hypothesis>=6.46.1
16+
- pytest-xdist>=3.4.0
17+
- hypothesis>=6.84.0
1818

1919
# required dependencies
2020
- python-dateutil

ci/deps/actions-311.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,9 @@ dependencies:
1313
# test dependencies
1414
- pytest>=7.3.2
1515
- pytest-cov
16-
- pytest-xdist>=2.2.0
17-
- pytest-qt>=4.2.0
16+
- pytest-xdist>=3.4.0
17+
- pytest-localserver>=0.8.1
18+
- pytest-qt>=4.4.0
1819
- boto3
1920

2021
# required dependencies
@@ -29,7 +30,7 @@ dependencies:
2930
- fastparquet>=2023.10.0
3031
- fsspec>=2022.11.0
3132
- html5lib>=1.1
32-
- hypothesis>=6.46.1
33+
- hypothesis>=6.84.0
3334
- gcsfs>=2022.11.0
3435
- jinja2>=3.1.2
3536
- lxml>=4.9.2
@@ -59,4 +60,3 @@ dependencies:
5960
- pip:
6061
- adbc-driver-postgresql>=0.10.0
6162
- adbc-driver-sqlite>=0.8.0
62-
- pytest-localserver>=0.7.1

ci/deps/actions-312.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,9 @@ dependencies:
1313
# test dependencies
1414
- pytest>=7.3.2
1515
- pytest-cov
16-
- pytest-xdist>=2.2.0
17-
- pytest-qt>=4.2.0
16+
- pytest-xdist>=3.4.0
17+
- pytest-localserver>=0.8.1
18+
- pytest-qt>=4.4.0
1819
- boto3
1920

2021
# required dependencies
@@ -29,7 +30,7 @@ dependencies:
2930
- fastparquet>=2023.10.0
3031
- fsspec>=2022.11.0
3132
- html5lib>=1.1
32-
- hypothesis>=6.46.1
33+
- hypothesis>=6.84.0
3334
- gcsfs>=2022.11.0
3435
- jinja2>=3.1.2
3536
- lxml>=4.9.2
@@ -60,4 +61,3 @@ dependencies:
6061
- adbc-driver-postgresql>=0.10.0
6162
- adbc-driver-sqlite>=0.8.0
6263
- tzdata>=2022.7
63-
- pytest-localserver>=0.7.1

0 commit comments

Comments
 (0)