We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b95018 commit 9212eaaCopy full SHA for 9212eaa
.github/workflows/release.yml
@@ -57,9 +57,10 @@ jobs:
57
image: "ghcr.io/osgeo/gdal:ubuntu-small-3.9.2"
58
59
steps:
60
- - name: Install packages
61
- run: |
62
- apt-get update && apt-get install -y build-essential python3-dev
+ - name: Set up Python
+ uses: actions/setup-python@v5
+ with:
63
+ python-version: "3.12"
64
65
- name: Create virtual environment
66
# install uv and use it to create a virtual environment, then add it to
@@ -90,7 +91,6 @@ jobs:
90
91
shell: bash
92
# virtual environment is automatically activated
93
run: |
- cd ..
94
uv run python -c "import pyogrio; print(f'GDAL version: {pyogrio.__gdal_version__}\nGEOS version: {pyogrio.__gdal_geos_version__}')"
95
uv run python -m pytest --pyargs pyogrio.tests -v
96
0 commit comments