@@ -139,7 +139,7 @@ jobs:
139139
140140 steps :
141141 - name : Checkout
142- uses : actions/checkout@v4
142+ uses : actions/checkout@v5
143143 with :
144144 fetch-depth : 0
145145
@@ -199,7 +199,7 @@ jobs:
199199
200200 steps :
201201 - name : Checkout
202- uses : actions/checkout@v4
202+ uses : actions/checkout@v5
203203 with :
204204 fetch-depth : 0
205205
@@ -243,7 +243,7 @@ jobs:
243243 . ~/virtualenvs/pandas-dev/bin/activate
244244 python -m pip install --no-cache-dir -U pip wheel setuptools meson[ninja]==1.2.1 meson-python==0.13.1
245245 python -m pip install numpy -Csetup-args="-Dallow-noblas=true"
246- python -m pip install --no-cache-dir versioneer[toml] cython==3.0.10 python-dateutil pytest>=7.3.2 pytest-xdist>=3.4.0 hypothesis>=6.84 .0
246+ python -m pip install --no-cache-dir versioneer[toml] cython==3.0.10 python-dateutil pytest>=7.3.2 pytest-xdist>=3.4.0 hypothesis>=6.116 .0
247247 python -m pip install --no-cache-dir --no-build-isolation -e . -Csetup-args="--werror"
248248 python -m pip list --no-cache-dir
249249 PANDAS_CI=1 python -m pytest -m 'not slow and not network and not clipboard and not single_cpu' pandas --junitxml=test-data.xml
@@ -280,7 +280,7 @@ jobs:
280280 /opt/python/cp313-cp313/bin/python -m venv ~/virtualenvs/pandas-dev
281281 . ~/virtualenvs/pandas-dev/bin/activate
282282 python -m pip install --no-cache-dir -U pip wheel setuptools meson-python==0.13.1 meson[ninja]==1.2.1
283- 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
283+ python -m pip install --no-cache-dir versioneer[toml] cython numpy python-dateutil pytest>=7.3.2 pytest-xdist>=3.4.0 hypothesis>=6.116 .0
284284 python -m pip install --no-cache-dir --no-build-isolation -e . -Csetup-args="--werror"
285285 python -m pip list --no-cache-dir
286286
@@ -313,7 +313,7 @@ jobs:
313313 # To freeze this file, uncomment out the ``if: false`` condition, and migrate the jobs
314314 # to the corresponding posix/windows-macos/sdist etc. workflows.
315315 # Feel free to modify this comment as necessary.
316- if : false
316+ # if: false
317317 defaults :
318318 run :
319319 shell : bash -eou pipefail {0}
@@ -338,26 +338,28 @@ jobs:
338338 PYTEST_TARGET : pandas
339339
340340 steps :
341- - uses : actions/checkout@v4
341+ - uses : actions/checkout@v5
342342 with :
343343 fetch-depth : 0
344344
345345 - name : Set up Python Dev Version
346- uses : actions/setup-python@v5
346+ uses : actions/setup-python@v6
347347 with :
348- python-version : ' 3.13 -dev'
348+ python-version : ' 3.14 -dev'
349349
350350 - name : Build Environment
351351 run : |
352352 python --version
353353 python -m pip install --upgrade pip setuptools wheel meson[ninja]==1.2.1 meson-python==0.13.1
354354 python -m pip install --pre --extra-index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple numpy
355- 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
355+ python -m pip install versioneer[toml] python-dateutil tzdata cython hypothesis>=6.116 .0 pytest>=7.3.2 pytest-xdist>=3.4.0 pytest-cov
356356 python -m pip install -ve . --no-build-isolation --no-index --no-deps -Csetup-args="--werror"
357357 python -m pip list
358358
359359 - name : Run Tests
360360 uses : ./.github/actions/run-tests
361+ # TEMP allow this to fail until we fixed all test failures (related to chained assignment warnings)
362+ continue-on-error : true
361363
362364 # NOTE: this job must be kept in sync with the Pyodide build job in wheels.yml
363365 emscripten :
@@ -375,13 +377,13 @@ jobs:
375377 cancel-in-progress : true
376378 steps :
377379 - name : Checkout pandas Repo
378- uses : actions/checkout@v4
380+ uses : actions/checkout@v5
379381 with :
380382 fetch-depth : 0
381383
382384 - name : Set up Python for pyodide-build
383385 id : setup-python
384- uses : actions/setup-python@v5
386+ uses : actions/setup-python@v6
385387 with :
386388 python-version : ' 3.12'
387389
@@ -399,7 +401,7 @@ jobs:
399401 pyodide build
400402
401403 - name : Set up Node.js
402- uses : actions/setup-node@v4
404+ uses : actions/setup-node@v5
403405 with :
404406 node-version : ' 20'
405407
0 commit comments