diff --git a/.github/workflows/installation.yml b/.github/workflows/installation.yml index 9126c5cfe4..c8644b96dc 100644 --- a/.github/workflows/installation.yml +++ b/.github/workflows/installation.yml @@ -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 diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 6bcb1341a9..d95989a253 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -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: @@ -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 }} diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 8d72cf4bd8..d9f47763ba 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -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 @@ -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 }}