Skip to content

Commit 8e0483d

Browse files
CI: avoid using nightly pandas in the release tests for now (#602)
1 parent d4f51b3 commit 8e0483d

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -315,10 +315,13 @@ jobs:
315315
run: |
316316
uv pip install -r ci/requirements-wheel-test.txt
317317
uv pip install --no-cache --pre --no-index --find-links wheelhouse pyogrio
318-
if [ ${{ matrix.python-version }} == "3.14t" ]; then
319-
uv pip install --pre --upgrade --extra-index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple pandas
318+
# TMP avoid installing nightly pandas given pandas <-> geopandas compatibility issues
319+
# if [ ${{ matrix.python-version }} == "3.14t" ]; then
320+
# uv pip install --pre --upgrade --extra-index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple pandas
321+
# fi
322+
if [ ${{ matrix.python-version }} != "3.14t" ]; then
323+
uv pip install --no-deps geopandas
320324
fi
321-
uv pip install --no-deps geopandas
322325
uv pip list
323326
324327
- name: Run tests

0 commit comments

Comments
 (0)