Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
12 changes: 7 additions & 5 deletions .github/workflows/coveralls.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,21 +8,21 @@ on:

jobs:
Caches:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04

steps:
- uses: actions/checkout@v2

- name: Set up Python 3.12.11
- name: Set up Python 3.12
uses: actions/setup-python@v1
with:
python-version: 3.12.11
python-version: 3.12

- name: apt update
run: |
sudo apt-get update
- name: Install gdal
# latest version of ubuntu (24.04) has only unstable ubuntugis release
# ubuntu 24.04 has only unstable ubuntugis release
run: |
sudo add-apt-repository ppa:ubuntugis/ubuntugis-unstable && sudo apt-get update
sudo apt-get install python3-gdal
Expand All @@ -34,7 +34,9 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install numpy
pip install --global-option=build_ext --global-option="-I/usr/include/gdal" GDAL==`gdal-config --version`
pip install --config-settings="--global-option=build_ext" \
--config-settings="--global-option=-I/usr/include/gdal" \
GDAL==`gdal-config --version`

- name: create cache RGB
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ jobs:
steps:
- uses: actions/checkout@v2

- name: Set up Python 3.12.11
- name: Set up Python 3.12
uses: actions/setup-python@v1
with:
python-version: 3.12.11
python-version: 3.12

- name: Install dependencies
run: |
Expand Down
Loading