Skip to content
Merged
Prev Previous commit
Fix install order and prevent geopandas from installing deps
  • Loading branch information
brendan-ward committed Sep 4, 2024
commit 87b9020e62c556c587f179e43c6f01139271194c
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -303,10 +303,10 @@ jobs:
shell: bash
run: |
uv pip install -r ci/requirements-wheel-test.txt
uv pip install --no-cache --pre --no-index --find-links wheelhouse pyogrio
if [ ${{ matrix.python-version }} != "3.12" ]; then
uv pip install geopandas
uv pip install --no-deps geopandas
fi
uv pip install --no-cache --pre --no-index --find-links wheelhouse pyogrio
uv pip list

- name: Run tests
Expand Down