Skip to content

Commit

Permalink
BLD: test the Python 3.13 wheels
Browse files Browse the repository at this point in the history
  • Loading branch information
jorisvandenbossche committed Sep 17, 2024
1 parent 262e925 commit e482a1b
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ jobs:
"macos-12",
"macos-latest",
]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
include:
- os: "ubuntu-latest"
artifact: pyogrio-wheel-linux-manylinux2014_x86_64
Expand Down Expand Up @@ -302,9 +302,13 @@ jobs:
- name: Install dependencies and pyogrio wheel
shell: bash
run: |
uv pip install -r ci/requirements-wheel-test.txt
if [ ${{ matrix.python-version }} != "3.13" ]; then
uv pip install -r ci/requirements-wheel-test.txt
else
uv pip install numpy pytest
fi
uv pip install --no-cache --pre --no-index --find-links wheelhouse pyogrio
if [ ${{ matrix.python-version }} != "3.12" ]; then
if [ ${{ matrix.python-version }} != "3.13" ]; then
uv pip install --no-deps geopandas
fi
uv pip list
Expand Down

0 comments on commit e482a1b

Please sign in to comment.