Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:

strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14', '3.15']

steps:
- name: Checkout code
Expand Down
2 changes: 1 addition & 1 deletion docs/get-started/quick-start-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Your feedback on this version of our client is appreciated. Please raise an issu

## Dependencies

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

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/).

Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def coverage(session):
session.run('coverage', 'report')


@nox.session(python=["3.9", "3.10", "3.11", "3.12", "3.13"])
@nox.session(python=["3.10", "3.11", "3.12", "3.13", "3.14", "3.15"])
def test(session):
session.run('python', '-m', 'ensurepip', '--upgrade')
session.install('-U', 'setuptools')
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ dependencies = [
"planet-auth>=2.1.0",
]
readme = "README.md"
requires-python = ">=3.9"
requires-python = ">=3.10"
keywords = ["planet", "api", "sdk", "client"]
classifiers = [
"Development Status :: 5 - Production/Stable",
Expand Down
Loading