Skip to content

Commit 2e2ed0f

Browse files
committed
Merge remote-tracking branch 'upstream/main' into cow_inf_obj
2 parents a3d0a2b + b00148b commit 2e2ed0f

File tree

115 files changed

+797
-633
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

115 files changed

+797
-633
lines changed

.github/workflows/32-bit-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
. ~/virtualenvs/pandas-dev/bin/activate && \
4040
python -m pip install --no-deps -U pip wheel 'setuptools<60.0.0' && \
4141
python -m pip install versioneer[toml] && \
42-
python -m pip install cython numpy python-dateutil pytz pytest pytest-xdist pytest-asyncio>=0.17 hypothesis && \
42+
python -m pip install cython numpy python-dateutil pytz pytest>=7.0.0 pytest-xdist>=2.2.0 pytest-asyncio>=0.17 hypothesis>=6.34.2 && \
4343
python setup.py build_ext -q -j1 && \
4444
python -m pip install --no-build-isolation --no-use-pep517 -e . && \
4545
python -m pip list && \

.github/workflows/python-dev.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,10 @@ jobs:
7373
run: |
7474
python --version
7575
python -m pip install --upgrade pip setuptools wheel
76-
python -m pip install --extra-index-url https://pypi.anaconda.org/scipy-wheels-nightly/simple numpy
76+
python -m pip install --pre --extra-index-url https://pypi.anaconda.org/scipy-wheels-nightly/simple numpy
7777
python -m pip install git+https://github.com/nedbat/coveragepy.git
7878
python -m pip install versioneer[toml]
79-
python -m pip install python-dateutil pytz cython hypothesis==6.52.1 pytest>=6.2.5 pytest-xdist pytest-cov pytest-asyncio>=0.17
79+
python -m pip install python-dateutil pytz cython hypothesis>=6.34.2 pytest>=7.0.0 pytest-xdist>=2.2.0 pytest-cov pytest-asyncio>=0.17
8080
python -m pip list
8181
8282
# GH 47305: Parallel build can cause flaky ImportError from pandas/_libs/tslibs

.github/workflows/wheels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ jobs:
168168
# (1. Generate sdist 2. Build wheels from sdist)
169169
# This tests the sdists, and saves some build time
170170
python -m pip install dist/*.gz
171-
pip install hypothesis==6.52.1 pytest>=6.2.5 pytest-xdist pytest-asyncio>=0.17
171+
pip install hypothesis>=6.34.2 pytest>=7.0.0 pytest-xdist>=2.2.0 pytest-asyncio>=0.17
172172
cd .. # Not a good idea to test within the src tree
173173
python -c "import pandas; print(pandas.__version__);
174174
pandas.test(extra_args=['-m not clipboard and not single_cpu', '--skip-slow', '--skip-network', '--skip-db', '-n=2']);

asv_bench/asv.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
// pip (with all the conda available packages installed first,
4242
// followed by the pip installed packages).
4343
"matrix": {
44-
"numpy": ["1.23.5"], // https://github.com/pandas-dev/pandas/pull/50356
44+
"numpy": [],
4545
"Cython": ["0.29.32"],
4646
"matplotlib": [],
4747
"sqlalchemy": [],

ci/deps/actions-310-numpydev.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
name: pandas-dev
22
channels:
3-
- defaults
3+
- conda-forge
44
dependencies:
55
- python=3.10
66

77
# build dependencies
88
- versioneer[toml]
99

1010
# test dependencies
11-
- pytest>=6.0
11+
- pytest>=7.0.0
1212
- pytest-cov
13-
- pytest-xdist>=1.31
14-
- hypothesis>=5.5.3
13+
- pytest-xdist>=2.2.0
14+
- hypothesis>=6.34.2
1515
- pytest-asyncio>=0.17
1616

1717
# pandas dependencies
@@ -22,5 +22,5 @@ dependencies:
2222
- "cython"
2323
- "--extra-index-url https://pypi.anaconda.org/scipy-wheels-nightly/simple"
2424
- "--pre"
25-
- "numpy<1.24"
25+
- "numpy"
2626
- "scipy"

ci/deps/actions-310.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@ dependencies:
99
- cython>=0.29.32
1010

1111
# test dependencies
12-
- pytest>=6.0
12+
- pytest>=7.0.0
1313
- pytest-cov
14-
- pytest-xdist>=1.31
14+
- pytest-xdist>=2.2.0
1515
- psutil
1616
- pytest-asyncio>=0.17
1717
- boto3
1818

1919
# required dependencies
2020
- python-dateutil
21-
- numpy<1.24
21+
- numpy
2222
- pytz
2323

2424
# optional dependencies

ci/deps/actions-38-downstream_compat.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@ dependencies:
1010
- cython>=0.29.32
1111

1212
# test dependencies
13-
- pytest>=6.0
13+
- pytest>=7.0.0
1414
- pytest-cov
15-
- pytest-xdist>=1.31
15+
- pytest-xdist>=2.2.0
1616
- psutil
1717
- pytest-asyncio>=0.17
1818
- boto3
1919

2020
# required dependencies
2121
- python-dateutil
22-
- numpy<1.24
22+
- numpy
2323
- pytz
2424

2525
# optional dependencies

ci/deps/actions-38-minimum_versions.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ dependencies:
1111
- cython>=0.29.32
1212

1313
# test dependencies
14-
- pytest>=6.0
14+
- pytest>=7.0.0
1515
- pytest-cov
16-
- pytest-xdist>=1.31
16+
- pytest-xdist>=2.2.0
1717
- psutil
1818
- pytest-asyncio>=0.17
1919
- boto3
@@ -31,7 +31,7 @@ dependencies:
3131
- fastparquet=0.6.3
3232
- fsspec=2021.07.0
3333
- html5lib=1.1
34-
- hypothesis=6.13.0
34+
- hypothesis=6.34.2
3535
- gcsfs=2021.07.0
3636
- jinja2=3.0.0
3737
- lxml=4.6.3

ci/deps/actions-38.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@ dependencies:
99
- cython>=0.29.32
1010

1111
# test dependencies
12-
- pytest>=6.0
12+
- pytest>=7.0.0
1313
- pytest-cov
14-
- pytest-xdist>=1.31
14+
- pytest-xdist>=2.2.0
1515
- psutil
1616
- pytest-asyncio>=0.17
1717
- boto3
1818

1919
# required dependencies
2020
- python-dateutil
21-
- numpy<1.24
21+
- numpy
2222
- pytz
2323

2424
# optional dependencies

ci/deps/actions-39.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@ dependencies:
99
- cython>=0.29.32
1010

1111
# test dependencies
12-
- pytest>=6.0
12+
- pytest>=7.0.0
1313
- pytest-cov
14-
- pytest-xdist>=1.31
14+
- pytest-xdist>=2.2.0
1515
- psutil
1616
- pytest-asyncio>=0.17
1717
- boto3
1818

1919
# required dependencies
2020
- python-dateutil
21-
- numpy<1.24
21+
- numpy
2222
- pytz
2323

2424
# optional dependencies

0 commit comments

Comments
 (0)