Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/main' into TST-add-use_arrow-f…
Browse files Browse the repository at this point in the history
…or-geopandas-tests-with-sql-statement
  • Loading branch information
theroggy committed Jan 23, 2024
2 parents f6e9e36 + 6e5112e commit c559795
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker-gdal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
matrix:
container:
- "ghcr.io/osgeo/gdal:ubuntu-small-latest" # >= python 3.10.6
- "ghcr.io/osgeo/gdal:ubuntu-small-3.8.1" # python 3.10.12
- "ghcr.io/osgeo/gdal:ubuntu-small-3.8.3" # python 3.10.12
- "ghcr.io/osgeo/gdal:ubuntu-small-3.7.3" # python 3.10.12
- "ghcr.io/osgeo/gdal:ubuntu-small-3.6.4" # python 3.10.6
- "osgeo/gdal:ubuntu-small-3.5.3" # python 3.8.10
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- uses: pre-commit/action@v3.0.0
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
fetch-depth: 0

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: "3.x"

Expand Down Expand Up @@ -215,7 +215,7 @@ jobs:
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/tests-conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ concurrency:

jobs:
test:
name: ${{ matrix.os }} (Python ${{ matrix.python }})
name: ${{ matrix.os }}, python ${{ matrix.python }}, ${{ matrix.env }}
runs-on: ${{ matrix.os }}
defaults:
run:
Expand All @@ -24,35 +24,35 @@ jobs:
matrix:
os: [ubuntu-latest, macos-latest, windows-2019]
python: ["3.10", "3.11", "3.12"]
env: ["environment.yml"]
env: ["latest"]
include:
# environment with lower versions of optional dependencies
- python: "3.10"
extra: |
extra: >-
pandas=1.5
geopandas=0.12
# minimal environment without optional dependencies
- os: "ubuntu-latest"
python: "3.9"
env: "environment-minimal.yml"
env: "minimal"
# environment for older Windows libgdal to make sure gdal_i.lib is
# properly detected
- os: "windows-2019"
python: "3.10"
env: "environment-libgdal3.5.1.yml"
env: "libgdal3.5.1"

steps:
- name: Checkout repo
uses: actions/checkout@v4

- name: Install Conda environment with Micromamba
uses: mamba-org/provision-with-micromamba@main
uses: mamba-org/setup-micromamba@v1
with:
environment-file: ci/${{ matrix.env }}
extra-specs: |
environment-file: ci/envs/${{ matrix.env }}.yml
create-args: >-
python=${{ matrix.python }}
${{ matrix.extra }}
cache-env: true
cache-environment: true

- name: Set environment variables (Windows)
if: runner.os == 'Windows'
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit c559795

Please sign in to comment.