@@ -107,7 +107,7 @@ jobs:
107
107
108
108
services :
109
109
mysql :
110
- image : mysql:8
110
+ image : mysql:9
111
111
env :
112
112
MYSQL_ALLOW_EMPTY_PASSWORD : yes
113
113
MYSQL_DATABASE : pandas
@@ -120,7 +120,7 @@ jobs:
120
120
- 3306:3306
121
121
122
122
postgres :
123
- image : postgres:16
123
+ image : postgres:17
124
124
env :
125
125
PGUSER : postgres
126
126
POSTGRES_USER : postgres
@@ -135,7 +135,7 @@ jobs:
135
135
- 5432:5432
136
136
137
137
moto :
138
- image : motoserver/moto:5.0.0
138
+ image : motoserver/moto:5.0.27
139
139
env :
140
140
AWS_ACCESS_KEY_ID : foobar_key
141
141
AWS_SECRET_ACCESS_KEY : foobar_secret
@@ -242,15 +242,14 @@ jobs:
242
242
- name : Build environment and Run Tests
243
243
# https://github.com/numpy/numpy/issues/24703#issuecomment-1722379388
244
244
run : |
245
- /opt/python/cp311-cp311 /bin/python -m venv ~/virtualenvs/pandas-dev
245
+ /opt/python/cp313-cp313 /bin/python -m venv ~/virtualenvs/pandas-dev
246
246
. ~/virtualenvs/pandas-dev/bin/activate
247
247
python -m pip install --no-cache-dir -U pip wheel setuptools meson[ninja]==1.2.1 meson-python==0.13.1
248
248
python -m pip install numpy -Csetup-args="-Dallow-noblas=true"
249
249
python -m pip install --no-cache-dir versioneer[toml] cython python-dateutil pytest>=7.3.2 pytest-xdist>=3.4.0 hypothesis>=6.84.0
250
250
python -m pip install --no-cache-dir --no-build-isolation -e . -Csetup-args="--werror"
251
251
python -m pip list --no-cache-dir
252
- export PANDAS_CI=1
253
- python -m pytest -m 'not slow and not network and not clipboard and not single_cpu' pandas --junitxml=test-data.xml
252
+ PANDAS_CI=1 python -m pytest -m 'not slow and not network and not clipboard and not single_cpu' pandas --junitxml=test-data.xml
254
253
concurrency :
255
254
# https://github.community/t/concurrecy-not-work-for-push/183068/7
256
255
group : ${{ github.event_name == 'push' && github.run_number || github.ref }}-32bit
@@ -259,7 +258,7 @@ jobs:
259
258
Linux-Musl :
260
259
runs-on : ubuntu-22.04
261
260
container :
262
- image : quay.io/pypa/musllinux_1_1_x86_64
261
+ image : quay.io/pypa/musllinux_1_2_x86_64
263
262
steps :
264
263
- name : Checkout pandas Repo
265
264
# actions/checkout does not work since it requires node
@@ -281,7 +280,7 @@ jobs:
281
280
apk add musl-locales
282
281
- name : Build environment
283
282
run : |
284
- /opt/python/cp311-cp311 /bin/python -m venv ~/virtualenvs/pandas-dev
283
+ /opt/python/cp313-cp313 /bin/python -m venv ~/virtualenvs/pandas-dev
285
284
. ~/virtualenvs/pandas-dev/bin/activate
286
285
python -m pip install --no-cache-dir -U pip wheel setuptools meson-python==0.13.1 meson[ninja]==1.2.1
287
286
python -m pip install --no-cache-dir versioneer[toml] cython numpy python-dateutil pytest>=7.3.2 pytest-xdist>=3.4.0 hypothesis>=6.84.0
@@ -291,8 +290,7 @@ jobs:
291
290
- name : Run Tests
292
291
run : |
293
292
. ~/virtualenvs/pandas-dev/bin/activate
294
- export PANDAS_CI=1
295
- python -m pytest -m 'not slow and not network and not clipboard and not single_cpu' pandas --junitxml=test-data.xml
293
+ PANDAS_CI=1 python -m pytest -m 'not slow and not network and not clipboard and not single_cpu' pandas --junitxml=test-data.xml
296
294
concurrency :
297
295
# https://github.community/t/concurrecy-not-work-for-push/183068/7
298
296
group : ${{ github.event_name == 'push' && github.run_number || github.ref }}-musl
@@ -357,8 +355,7 @@ jobs:
357
355
python --version
358
356
python -m pip install --upgrade pip setuptools wheel meson[ninja]==1.2.1 meson-python==0.13.1
359
357
python -m pip install --pre --extra-index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple numpy
360
- python -m pip install versioneer[toml]
361
- python -m pip install python-dateutil tzdata cython hypothesis>=6.84.0 pytest>=7.3.2 pytest-xdist>=3.4.0 pytest-cov
358
+ python -m pip install versioneer[toml] python-dateutil tzdata cython hypothesis>=6.84.0 pytest>=7.3.2 pytest-xdist>=3.4.0 pytest-cov
362
359
python -m pip install -ve . --no-build-isolation --no-index --no-deps -Csetup-args="--werror"
363
360
python -m pip list
364
361
@@ -375,7 +372,7 @@ jobs:
375
372
376
373
concurrency :
377
374
# https://github.community/t/concurrecy-not-work-for-push/183068/7
378
- group : ${{ github.event_name == 'push' && github.run_number || github.ref }}-${{ matrix.os }}- python-freethreading-dev
375
+ group : ${{ github.event_name == 'push' && github.run_number || github.ref }}-python-freethreading-dev
379
376
cancel-in-progress : true
380
377
381
378
env :
@@ -396,14 +393,11 @@ jobs:
396
393
nogil : true
397
394
398
395
- name : Build Environment
399
- # TODO: Once numpy 2.2.1 is out, don't install nightly version
400
- # Tests segfault with numpy 2.2.0: https://github.com/numpy/numpy/pull/27955
401
396
run : |
402
397
python --version
403
- python -m pip install --upgrade pip setuptools wheel meson[ninja]==1.2.1 meson-python==0.13.1
404
- python -m pip install --pre --extra-index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple cython numpy
405
- python -m pip install versioneer[toml]
406
- python -m pip install python-dateutil pytz tzdata hypothesis>=6.84.0 pytest>=7.3.2 pytest-xdist>=3.4.0 pytest-cov
398
+ python -m pip install --upgrade pip setuptools wheel numpy meson[ninja]==1.2.1 meson-python==0.13.1
399
+ python -m pip install --pre --extra-index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple cython
400
+ python -m pip install versioneer[toml] python-dateutil pytz tzdata hypothesis>=6.84.0 pytest>=7.3.2 pytest-xdist>=3.4.0 pytest-cov
407
401
python -m pip install -ve . --no-build-isolation --no-index --no-deps -Csetup-args="--werror"
408
402
python -m pip list
409
403
0 commit comments