Skip to content

Commit

Permalink
Update GitHub Actions to use Python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
giswqs committed Dec 19, 2023
1 parent 8e8fe3d commit 043a6d7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 20 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/installation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.10"]
python-version: ["3.12"]
steps:
- uses: actions/checkout@v3
- name: Set up Python
Expand Down
10 changes: 1 addition & 9 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
fail-fast: false
matrix:
config:
- { os: macOS-latest, py: "3.9" }
- { os: macOS-latest, py: "3.11" }
env:
SDKROOT: /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk
steps:
Expand All @@ -31,11 +31,3 @@ jobs:
pip install --no-cache-dir Cython
pip install codespell -r requirements.txt
pip install .
# - name: Discover typos with codespell
# run: codespell --skip="*.csv,*.geojson,*.json,*.js,*.html,*cff" --ignore-words-list="aci,acount,acounts,fallow,hart,hist,nd,ned,ois,wqs"
# - name: PKG-TEST
# run: |
# python -m unittest discover tests/
# env:
# HEREMAPS_API_KEY: ${{ secrets.HEREMAPS_API_KEY }}
# PLANET_API_KEY: ${{ secrets.PLANET_API_KEY }}
11 changes: 1 addition & 10 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
uses: conda-incubator/setup-miniconda@v2
with:
auto-activate-base: true
python-version: 3.9
python-version: "3.11"
- name: Install GDAL
run: conda install -c conda-forge gdal=3.4.0 --yes
- name: Test GDAL installation
Expand All @@ -29,12 +29,3 @@ jobs:
pip install --no-cache-dir Cython
pip install -r codespell requirements.txt
pip install .
# - name: Discover typos with codespell
# run: codespell --skip="*.csv,*.geojson,*.json,*.js,*.html,*cff" --ignore-words-list="aci,acount,acounts,fallow,hart,hist,nd,ned,ois,wqs"
# - name: PKG-TEST
# run: |
# python -m unittest discover tests/
# env:
# HEREMAPS_API_KEY: ${{ secrets.HEREMAPS_API_KEY }}
# PLANET_API_KEY: ${{ secrets.PLANET_API_KEY }}
# EARTHENGINE_TOKEN: ${{ secrets.EARTHENGINE_TOKEN }}

0 comments on commit 043a6d7

Please sign in to comment.