@@ -103,7 +103,7 @@ jobs:
103
103
104
104
services :
105
105
mysql :
106
- image : mysql
106
+ image : mysql:8.0.33
107
107
env :
108
108
MYSQL_ALLOW_EMPTY_PASSWORD : yes
109
109
MYSQL_DATABASE : pandas
@@ -116,8 +116,9 @@ jobs:
116
116
- 3306:3306
117
117
118
118
postgres :
119
- image : postgres
119
+ image : postgres:13
120
120
env :
121
+ PGUSER : postgres
121
122
POSTGRES_USER : postgres
122
123
POSTGRES_PASSWORD : postgres
123
124
POSTGRES_DB : pandas
@@ -130,7 +131,7 @@ jobs:
130
131
- 5432:5432
131
132
132
133
moto :
133
- image : motoserver/moto:4.1.12
134
+ image : motoserver/moto:4.1.13
134
135
env :
135
136
AWS_ACCESS_KEY_ID : foobar_key
136
137
AWS_SECRET_ACCESS_KEY : foobar_secret
@@ -237,7 +238,7 @@ jobs:
237
238
run : |
238
239
/opt/python/cp311-cp311/bin/python -m venv ~/virtualenvs/pandas-dev
239
240
. ~/virtualenvs/pandas-dev/bin/activate
240
- python -m pip install -U pip wheel setuptools meson[ninja]==1.0.1 meson-python==0.13.1
241
+ python -m pip install --no-cache-dir - U pip wheel setuptools meson[ninja]==1.0.1 meson-python==0.13.1
241
242
python -m pip install --no-cache-dir versioneer[toml] cython numpy python-dateutil pytz pytest>=7.3.2 pytest-xdist>=2.2.0 pytest-asyncio>=0.17 hypothesis>=6.46.1
242
243
python -m pip install --no-cache-dir --no-build-isolation -e .
243
244
python -m pip list --no-cache-dir
@@ -275,7 +276,7 @@ jobs:
275
276
run : |
276
277
/opt/python/cp311-cp311/bin/python -m venv ~/virtualenvs/pandas-dev
277
278
. ~/virtualenvs/pandas-dev/bin/activate
278
- python -m pip install -U pip wheel setuptools meson-python==0.13.1 meson[ninja]==1.0.1
279
+ python -m pip install --no-cache-dir - U pip wheel setuptools meson-python==0.13.1 meson[ninja]==1.0.1
279
280
python -m pip install --no-cache-dir versioneer[toml] cython numpy python-dateutil pytz pytest>=7.3.2 pytest-xdist>=2.2.0 pytest-asyncio>=0.17 hypothesis>=6.46.1
280
281
python -m pip install --no-cache-dir --no-build-isolation -e .
281
282
python -m pip list --no-cache-dir
@@ -310,12 +311,16 @@ jobs:
310
311
# To freeze this file, uncomment out the ``if: false`` condition, and migrate the jobs
311
312
# to the corresponding posix/windows-macos/sdist etc. workflows.
312
313
# Feel free to modify this comment as necessary.
313
- if : false # Uncomment this to freeze the workflow, comment it to unfreeze
314
+ # if: false # Uncomment this to freeze the workflow, comment it to unfreeze
314
315
runs-on : ${{ matrix.os }}
315
316
strategy :
316
317
fail-fast : false
317
318
matrix :
318
- os : [ubuntu-22.04, macOS-latest, windows-latest]
319
+ # TODO: Disable macOS for now, Github Actions bug where python is not
320
+ # symlinked correctly to 3.12
321
+ # xref https://github.com/actions/setup-python/issues/701
322
+ # os: [ubuntu-22.04, macOS-latest, windows-latest]
323
+ os : [ubuntu-22.04, windows-latest]
319
324
320
325
timeout-minutes : 180
321
326
@@ -339,21 +344,21 @@ jobs:
339
344
- name : Set up Python Dev Version
340
345
uses : actions/setup-python@v4
341
346
with :
342
- python-version : ' 3.11 -dev'
347
+ python-version : ' 3.12 -dev'
343
348
344
349
- name : Install dependencies
345
350
run : |
346
351
python --version
347
- python -m pip install --upgrade pip setuptools wheel
352
+ python -m pip install --upgrade pip setuptools wheel meson[ninja]==1.0.1 meson-python==0.13.1
348
353
python -m pip install --pre --extra-index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple numpy
349
354
python -m pip install git+https://github.com/nedbat/coveragepy.git
350
355
python -m pip install versioneer[toml]
351
- python -m pip install python-dateutil pytz cython hypothesis>=6.46.1 pytest>=7.3.2 pytest-xdist>=2.2.0 pytest-cov pytest-asyncio>=0.17
356
+ python -m pip install python-dateutil pytz tzdata cython hypothesis>=6.46.1 pytest>=7.3.2 pytest-xdist>=2.2.0 pytest-cov pytest-asyncio>=0.17
352
357
python -m pip list
353
358
354
359
- name : Build Pandas
355
360
run : |
356
- python -m pip install -e . --no-build-isolation --no-index
361
+ python -m pip install -ve . --no-build-isolation --no-index
357
362
358
363
- name : Build Version
359
364
run : |
0 commit comments