Skip to content

Commit

Permalink
Client: Remove py3.12 support (#12403)
Browse files Browse the repository at this point in the history
GitOrigin-RevId: f225403353214703a07044605c1e6ef2034a3ec1
  • Loading branch information
stephencpope authored and Descartes Labs Build committed Jan 22, 2024
1 parent e51d8dc commit e0eed27
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/public-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
python-version: ['3.8', '3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@ Changelog
- The minimum required version of `urllib3` has been bumped to 1.26.18 to address a security vulnerability.
- The minimum required version of `shapely` has been bumped to 2.0.0 to address thread safety issues.
- Python 3.7, formerly deprecated, is no longer supported.
- Python 3.12 is now supported.
- Python 3.12 is not officially supported yet due to the lack of support from `blosc`. However, if you
are able to provide a functional `blosc` on your own, then 3.12 should work.
- Urllib3 2.X is now supported.

## [2.1.2] - 2023-10-31
Expand Down
2 changes: 1 addition & 1 deletion descarteslabs/core/client/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
)
raise ImportError(msg)

if sys.version_info >= (3, 13):
if sys.version_info >= (3, 12):
msg = "Python version {}.{} is not supported yet. You may encounter unexpected errors.".format(
sys.version_info.major, sys.version_info.minor
)
Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@ def do_setup():
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
license="Apache 2.0",
download_url=(
Expand Down

0 comments on commit e0eed27

Please sign in to comment.