Skip to content

Commit d8be77d

Browse files
committed
fix: bump min python to 3.10
1 parent 3f4a597 commit d8be77d

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/continuous-integration.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
strategy:
1818
matrix:
19-
python-version: ["3.8", "3.9", "3.10", "3.11"]
19+
python-version: ["3.10", "3.11", "3.12", "3.13"]
2020
defaults:
2121
run:
2222
shell: bash -l {0}
@@ -34,7 +34,7 @@ jobs:
3434
runs-on: ubuntu-latest
3535
strategy:
3636
matrix:
37-
python-version: ["3.8", "3.9", "3.10", "3.11"]
37+
python-version: ["3.10", "3.11", "3.12", "3.13"]
3838
defaults:
3939
run:
4040
shell: bash -l {0}
@@ -52,7 +52,7 @@ jobs:
5252
runs-on: ubuntu-latest
5353
strategy:
5454
matrix:
55-
python-version: ["3.8", "3.9", "3.10", "3.11"]
55+
python-version: ["3.10", "3.11", "3.12", "3.13"]
5656
defaults:
5757
run:
5858
shell: bash -l {0}
@@ -73,7 +73,7 @@ jobs:
7373
continue-on-error: true
7474
strategy:
7575
matrix:
76-
python-version: ["3.8", "3.9", "3.10", "3.11"]
76+
python-version: ["3.10", "3.11", "3.12", "3.13"]
7777
defaults:
7878
run:
7979
shell: bash -l {0}

docs/index.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ See the `stactools-packages website <https://stactools-packages.github.io>`_ and
1919
Requirements
2020
============
2121

22-
* `Python 3.8 or greater <https://www.python.org/>`_
22+
* `Python 3.10 or greater <https://www.python.org/>`_
2323

2424
STAC version support
2525
====================

pyproject.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ keywords = ["pystac", "imagery", "raster", "catalog", "STAC"]
1212
classifiers = [
1313
"Development Status :: 4 - Beta",
1414
"License :: OSI Approved :: Apache Software License",
15-
"Programming Language :: Python :: 3.8",
16-
"Programming Language :: Python :: 3.9",
1715
"Programming Language :: Python :: 3.10",
1816
"Programming Language :: Python :: 3.11",
17+
"Programming Language :: Python :: 3.12",
18+
"Programming Language :: Python :: 3.13",
1919
]
20-
requires-python = ">=3.8"
20+
requires-python = ">=3.10"
2121
dependencies = [
2222
"antimeridian>=0.2.6",
2323
"click>=8.1.3",

0 commit comments

Comments
 (0)