Skip to content

Commit

Permalink
python build requires args for gdal.
Browse files Browse the repository at this point in the history
  • Loading branch information
mjohns-databricks committed Jan 8, 2024
1 parent 125e088 commit da5b5fd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/actions/python_build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,10 @@ runs:
shell: bash
run: |
# - install pip libs
# note: gdal requires the extra args
cd python
pip install build wheel pyspark==${{ matrix.spark }} numpy==${{ matrix.numpy }}
pip install --no-build-isolation gdal==${{ matrix.gdal }}
pip install --no-build-isolation --no-cache-dir --force-reinstall gdal==${{ matrix.gdal }}
pip install .
- name: Test and build python package
shell: bash
Expand Down

0 comments on commit da5b5fd

Please sign in to comment.