Skip to content

Bump version to 0.0.104 #181

Bump version to 0.0.104

Bump version to 0.0.104 #181

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
test:
name: Test on Python ${{ matrix.python-version }}
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
cache-dependency-glob: "uv.lock"
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync --all-extras --dev
- name: Verify Shapely version
run: uv run python -c "import shapely, sys; print(shapely.__version__); assert shapely.__version__.split('.')[0] == '2'"
- name: Run dependency check
run: uv run deptry .
- name: Run tests
run: uv run pytest