Skip to content

Commit 72f812c

Browse files
Update supported Python versions (Python 3.9 EOL 10/2025) (#1196)
* eol python v3.9, bump supported python versions to 3.10 -> 3.14
1 parent b8be6a6 commit 72f812c

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262

6363
strategy:
6464
matrix:
65-
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
65+
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
6666

6767
steps:
6868
- name: Checkout code

docs/get-started/quick-start-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Your feedback on this version of our client is appreciated. Please raise an issu
1111

1212
## Dependencies
1313

14-
This package requires [Python 3.9 or greater](https://python.org/downloads/). A virtual environment is strongly recommended.
14+
This package requires [Python 3.10 or greater](https://python.org/downloads/). A virtual environment is strongly recommended.
1515

1616
You will need Planet credentials to use this SDK. You can learn more about authentication options and where to find your credentials in our [authentication documentation](https://docs.planet.com/develop/authentication/).
1717

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def coverage(session):
3737
session.run('coverage', 'report')
3838

3939

40-
@nox.session(python=["3.9", "3.10", "3.11", "3.12", "3.13"])
40+
@nox.session(python=["3.10", "3.11", "3.12", "3.13", "3.14"])
4141
def test(session):
4242
session.run('python', '-m', 'ensurepip', '--upgrade')
4343
session.install('-U', 'setuptools')

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ dependencies = [
1717
"planet-auth>=2.1.0",
1818
]
1919
readme = "README.md"
20-
requires-python = ">=3.9"
20+
requires-python = ">=3.10"
2121
keywords = ["planet", "api", "sdk", "client"]
2222
classifiers = [
2323
"Development Status :: 5 - Production/Stable",

0 commit comments

Comments
 (0)