From 9c0312dc1a567f384a2a8d77e05d0c379df04290 Mon Sep 17 00:00:00 2001 From: Rohan Weeden Date: Thu, 11 Dec 2025 12:39:00 -0500 Subject: [PATCH 1/3] Update supported python versions --- .github/workflows/lint.yml | 4 ++-- .github/workflows/test.yml | 2 +- pyproject.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index e3185de..7afb741 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -12,7 +12,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-python@v4 with: - python-version: 3.9 + python-version: "3.10" - uses: TrueBrain/actions-flake8@v2 with: @@ -27,7 +27,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-python@v5 with: - python-version: 3.9 + python-version: "3.10" - run: | pip install poetry diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a102f04..1d4ba50 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.9', '3.10', '3.11', '3.12'] + python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"] fail-fast: false steps: diff --git a/pyproject.toml b/pyproject.toml index 7e248ed..3d06afd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,7 +12,7 @@ readme = "README.md" packages = [{include = "geo_extensions"}] [tool.poetry.dependencies] -python = "^3.9" +python = "^3.10" shapely = "^2.0.3" From 14bc9cef8809c346df9bab3c898cb678c3ae2d47 Mon Sep 17 00:00:00 2001 From: Rohan Weeden Date: Thu, 11 Dec 2025 12:39:33 -0500 Subject: [PATCH 2/3] Fix YAML formatting --- .github/workflows/lint.yml | 38 +++++++++++++++++++------------------- .github/workflows/test.yml | 22 +++++++++++----------- 2 files changed, 30 insertions(+), 30 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 7afb741..84431ce 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -21,25 +21,25 @@ jobs: plugins: flake8-isort==6.1.2 flake8-quotes==3.4.0 flake8-commas==4.0.0 mypy: - runs-on: ubuntu-latest + runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-python@v5 - with: - python-version: "3.10" + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 + with: + python-version: "3.10" - - run: | - pip install poetry - poetry install --with=mypy + - run: | + pip install poetry + poetry install --with=mypy - - run: | - poetry run mypy \ - --follow-untyped-imports \ - --disallow-any-unimported \ - --disallow-untyped-defs \ - --check-untyped-defs \ - --strict-equality \ - --warn-redundant-casts \ - --warn-unused-ignores \ - geo_extensions + - run: | + poetry run mypy \ + --follow-untyped-imports \ + --disallow-any-unimported \ + --disallow-untyped-defs \ + --check-untyped-defs \ + --strict-equality \ + --warn-redundant-casts \ + --warn-unused-ignores \ + geo_extensions diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1d4ba50..079a4f9 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -15,14 +15,14 @@ jobs: fail-fast: false steps: - - uses: actions/checkout@v3 - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 - with: - python-version: ${{ matrix.python-version }} - - name: Install dependencies - run: | - python -m pip install --upgrade pip - python -m pip install poetry - poetry install --with=dev - - run: poetry run python3 -m pytest + - uses: actions/checkout@v3 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v4 + with: + python-version: ${{ matrix.python-version }} + - name: Install dependencies + run: | + python -m pip install --upgrade pip + python -m pip install poetry + poetry install --with=dev + - run: poetry run python3 -m pytest From 041aa1da88f1103f0751de1a374cecadce5f706d Mon Sep 17 00:00:00 2001 From: Rohan Weeden Date: Thu, 11 Dec 2025 12:42:06 -0500 Subject: [PATCH 3/3] Bump version number --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 3d06afd..5fa2296 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "geo-extensions" -version = "0.3.0" +version = "0.3.1" description = "" authors = ["Rohan Weeden "] license = "APACHE-2"