@@ -103,7 +103,7 @@ jobs:
103103
104104 services :
105105 mysql :
106- image : mysql
106+ image : mysql:8.0.33
107107 env :
108108 MYSQL_ALLOW_EMPTY_PASSWORD : yes
109109 MYSQL_DATABASE : pandas
@@ -116,8 +116,9 @@ jobs:
116116 - 3306:3306
117117
118118 postgres :
119- image : postgres
119+ image : postgres:13
120120 env :
121+ PGUSER : postgres
121122 POSTGRES_USER : postgres
122123 POSTGRES_PASSWORD : postgres
123124 POSTGRES_DB : pandas
@@ -130,7 +131,7 @@ jobs:
130131 - 5432:5432
131132
132133 moto :
133- image : motoserver/moto:4.1.12
134+ image : motoserver/moto:4.1.13
134135 env :
135136 AWS_ACCESS_KEY_ID : foobar_key
136137 AWS_SECRET_ACCESS_KEY : foobar_secret
@@ -237,7 +238,7 @@ jobs:
237238 run : |
238239 /opt/python/cp311-cp311/bin/python -m venv ~/virtualenvs/pandas-dev
239240 . ~/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
241242 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
242243 python -m pip install --no-cache-dir --no-build-isolation -e .
243244 python -m pip list --no-cache-dir
@@ -275,7 +276,7 @@ jobs:
275276 run : |
276277 /opt/python/cp311-cp311/bin/python -m venv ~/virtualenvs/pandas-dev
277278 . ~/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
279280 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
280281 python -m pip install --no-cache-dir --no-build-isolation -e .
281282 python -m pip list --no-cache-dir
@@ -310,12 +311,16 @@ jobs:
310311 # To freeze this file, uncomment out the ``if: false`` condition, and migrate the jobs
311312 # to the corresponding posix/windows-macos/sdist etc. workflows.
312313 # 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
314315 runs-on : ${{ matrix.os }}
315316 strategy :
316317 fail-fast : false
317318 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]
319324
320325 timeout-minutes : 180
321326
@@ -339,21 +344,21 @@ jobs:
339344 - name : Set up Python Dev Version
340345 uses : actions/setup-python@v4
341346 with :
342- python-version : ' 3.11 -dev'
347+ python-version : ' 3.12 -dev'
343348
344349 - name : Install dependencies
345350 run : |
346351 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
348353 python -m pip install --pre --extra-index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple numpy
349354 python -m pip install git+https://github.com/nedbat/coveragepy.git
350355 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
352357 python -m pip list
353358
354359 - name : Build Pandas
355360 run : |
356- python -m pip install -e . --no-build-isolation --no-index
361+ python -m pip install -ve . --no-build-isolation --no-index
357362
358363 - name : Build Version
359364 run : |
0 commit comments