Skip to content

Commit defadd2

Browse files
remove python 3.9 and 3.10 support (#339)
1 parent f311f45 commit defadd2

File tree

4 files changed

+524
-2228
lines changed

4 files changed

+524
-2228
lines changed

.github/workflows/cicd.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
strategy:
1616
matrix:
17-
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
17+
python-version: ['3.11', '3.12', '3.13', '3.14']
1818

1919
timeout-minutes: 25
2020

CHANGES.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
## [Unreleased]
44

5+
## [6.2.0] - TBD
6+
7+
### Removed
8+
9+
- support for python 3.9 and 3.10
10+
511
## [6.1.5] - 2025-12-12
612

713
### Fixed
@@ -545,7 +551,8 @@ As a part of this release, this repository was extracted from the main
545551

546552
- First PyPi release!
547553

548-
[Unreleased]: <https://github.com/stac-utils/stac-fastapi-pgstac/compare/6.1.5..main>
554+
[Unreleased]: <https://github.com/stac-utils/stac-fastapi-pgstac/compare/6.2.0..main>
555+
[6.2.0]: <https://github.com/stac-utils/stac-fastapi-pgstac/compare/6.1.5..6.2.0>
549556
[6.1.5]: <https://github.com/stac-utils/stac-fastapi-pgstac/compare/6.1.4..6.1.5>
550557
[6.1.4]: <https://github.com/stac-utils/stac-fastapi-pgstac/compare/6.1.3..6.1.4>
551558
[6.1.3]: <https://github.com/stac-utils/stac-fastapi-pgstac/compare/6.1.2..6.1.3>

pyproject.toml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "stac-fastapi-pgstac"
33
description = "An implementation of STAC API based on the FastAPI framework and using the pgstac backend."
44
readme = "README.md"
5-
requires-python = ">=3.9"
5+
requires-python = ">=3.11"
66
license = "MIT"
77
authors = [
88
{ name = "David Bitner", email = "david@developmentseed.org" },
@@ -24,8 +24,6 @@ classifiers = [
2424
"Intended Audience :: Developers",
2525
"Intended Audience :: Information Technology",
2626
"Intended Audience :: Science/Research",
27-
"Programming Language :: Python :: 3.9",
28-
"Programming Language :: Python :: 3.10",
2927
"Programming Language :: Python :: 3.11",
3028
"Programming Language :: Python :: 3.12",
3129
"Programming Language :: Python :: 3.13",

0 commit comments

Comments
 (0)