Skip to content

Commit

Permalink
gdal_calc python target?
Browse files Browse the repository at this point in the history
  • Loading branch information
sllynn committed Nov 29, 2024
1 parent 6a632d2 commit f433d77
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/actions/scala_build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,11 @@ runs:
run: |
sudo add-apt-repository ppa:deadsnakes/ppa
sudo apt update
sudo apt install -y python${{ matrix.python }} python${{ matrix.python }}-dev python${{ matrix.python }}-venv python${{ matrix.python }}-distutils
sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python${{ matrix.python }} 1
sudo apt install -y python${{ matrix.python_minor }} \
python${{ matrix.python_minor }}-dev \
python${{ matrix.python_minor }}-venv \
python${{ matrix.python_minor }}-distutils
sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python${{ matrix.python_minor }} 1
python3 -m venv /databricks/python3
echo "/databricks/python3" >> "$GITHUB_PATH"
- name: Add packaged GDAL dependencies
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/build_main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ jobs:
strategy:
matrix:
python: [ 3.11.0 ]
python_minor: [ 3.11 ]
numpy: [ 1.22.4 ]
gdal: [ 3.10.0 ]
spark: [ 3.5.0 ]
Expand Down

0 comments on commit f433d77

Please sign in to comment.