Skip to content

Bump geopandas from 1.1.1 to 1.1.2 #103

Bump geopandas from 1.1.1 to 1.1.2

Bump geopandas from 1.1.1 to 1.1.2 #103

Workflow file for this run

name: Python Unit Tests with uv
permissions:
contents: read
pull-requests: write
on:
push:
branches: [main]
pull_request:
jobs:
uv-run-pytest:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.10', '3.11', '3.12', '3.13']
container:
image: osgeo/gdal:ubuntu-small-3.6.3
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install build tools
run: |
apt-get update
apt-get install -y \
python3 python3-pip python3-venv \
build-essential \
libgeos-dev \
libproj-dev
- name: Install uv
run: pip3 install uv
- name: Sync environment with uv
run: uv sync --group dev
- name: Run tests with pytest
run: uv run pytest