Skip to content

Commit

Permalink
Revert "- move future Python to 3.14"
Browse files Browse the repository at this point in the history
This reverts commit 9175b40.
  • Loading branch information
dataflake committed Sep 15, 2024
1 parent 9ae4a4d commit b609b6c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions config/shared/packages.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@
ORG = 'zopefoundation'
BASE_PATH = pathlib.Path(__file__).parent.parent
OLDEST_PYTHON_VERSION = '3.8'
NEWEST_PYTHON_VERSION = '3.13'
NEWEST_PYTHON_VERSION = '3.12'
SUPPORTED_PYTHON_VERSIONS = [
f'3.{i}' for i in range(int(OLDEST_PYTHON_VERSION.replace('3.', '')),
int(NEWEST_PYTHON_VERSION.replace('3.', '')) + 1)
]
FUTURE_PYTHON_VERSION = '3.14'
FUTURE_PYTHON_VERSION = '3.13'
PYPY_VERSION = '3.10'
SETUPTOOLS_VERSION_SPEC = '<74'
MANYLINUX_PYTHON_VERSION = '3.11'
Expand Down

0 comments on commit b609b6c

Please sign in to comment.