File tree Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change 57
57
image : " ghcr.io/osgeo/gdal:ubuntu-small-3.9.2"
58
58
59
59
steps :
60
- - name : Install packages
61
- run : |
62
- apt-get update && apt-get install -y build-essential python3-dev
60
+ - name : Set up Python
61
+ uses : actions/setup-python@v5
62
+ with :
63
+ python-version : " 3.12"
63
64
64
65
- name : Create virtual environment
65
66
# install uv and use it to create a virtual environment, then add it to
89
90
- name : Run tests
90
91
shell : bash
91
92
# virtual environment is automatically activated
92
- run : |
93
- cd ..
94
- uv run python -c "import pyogrio; print(f'GDAL version: {pyogrio.__gdal_version__}\nGEOS version: {pyogrio.__gdal_geos_version__}')"
93
+ run : | uv run python -c "import pyogrio; print(f'GDAL version: {pyogrio.__gdal_version__}\nGEOS version: {pyogrio.__gdal_geos_version__}')"
95
94
uv run python -m pytest --pyargs pyogrio.tests -v
96
95
97
96
build-wheels-linux :
You can’t perform that action at this time.
0 commit comments