Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/docker-gdal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
run: |
python3 -m pip install --no-cache-dir -U pip wheel
python3 -m pip install --no-cache-dir cython~=0.29
python3 -m pip install --no-cache-dir --no-build-isolation -e .[dev,test,geopandas]
python3 -m pip install --no-cache-dir --no-build-isolation --no-use-pep517 -e .[dev,test,geopandas]
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Alternatively, we could also remove the --no-build-isolation altogether and test the default pip installation in this workflow (and then we can also remove the cython install step on the line above)

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, that's cleaner.


- name: Test with pytest
run: |
Expand Down