Skip to content

Commit 64bfd32

Browse files
Merge pull request #26 from developmentseed/feature/python-version-support-3.13
remove python 3.8 and add python 3.13
2 parents 6973bc0 + 0fd7790 commit 64bfd32

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.flake8

-5
This file was deleted.

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,19 @@ on:
99
- '*'
1010
pull_request:
1111
env:
12-
LATEST_PY_VERSION: '3.11'
12+
LATEST_PY_VERSION: '3.13'
1313

1414
jobs:
1515
tests:
1616
runs-on: ubuntu-latest
1717
strategy:
1818
matrix:
1919
python-version:
20-
- '3.8'
2120
- '3.9'
2221
- '3.10'
2322
- '3.11'
2423
- '3.12'
24+
- '3.13'
2525

2626
steps:
2727
- uses: actions/checkout@v4

.pre-commit-config.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ repos:
1111
language_version: python
1212

1313
- repo: https://github.com/astral-sh/ruff-pre-commit
14-
rev: v0.3.5
14+
rev: v0.8.4
1515
hooks:
1616
- id: ruff
1717
args: ["--fix"]
1818
- id: ruff-format
1919

2020
- repo: https://github.com/pre-commit/mirrors-mypy
21-
rev: v1.9.0
21+
rev: v1.11.2
2222
hooks:
2323
- id: mypy
2424
language_version: python

CHANGES.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 0.14.0 (2025-01-06)
2+
3+
* remove `python 3.8` support
4+
* add `python 3.13` support
5+
16
## 0.13.0 (2024-10-23)
27

38
* update rio-tiler dependency to `>=7.0,<8.0`

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ classifiers = [
1212
"License :: OSI Approved :: MIT License",
1313
"Programming Language :: Python :: 3",
1414
"Programming Language :: Python :: 3 :: Only",
15-
"Programming Language :: Python :: 3.8",
1615
"Programming Language :: Python :: 3.9",
1716
"Programming Language :: Python :: 3.10",
1817
"Programming Language :: Python :: 3.11",
1918
"Programming Language :: Python :: 3.12",
19+
"Programming Language :: Python :: 3.13",
2020
"Topic :: Scientific/Engineering :: GIS",
2121
]
2222
dynamic = ["version", "readme"]

0 commit comments

Comments
 (0)