Skip to content

Commit

Permalink
Deprecate python 3.8 (EOL)
Browse files Browse the repository at this point in the history
  • Loading branch information
coldfix committed Dec 27, 2024
1 parent 3fad680 commit 7a5143e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ MAD-X interpreter in python.
**Note:** Support for 32bit builds and python 2.7 has been removed in version
1.8.0. Support for python 3.5 has been removed in version 1.10.0.

**Note:** python 3.6 and manylinux1 have reached EOL. Support will be
removed in a future release.
**Note:** python 3.8 and below, as well as manylinux1 have reached EOL.
Support will be removed in a future release.


Links
Expand Down
4 changes: 2 additions & 2 deletions src/cpymad/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@
"""


if sys.version_info < (3, 8):
if sys.version_info < (3, 9):
_unsupported_version = (
"Support for python 3.7 and below will be removed in a future release!\n"
"Support for python 3.8 and below will be removed in a future release!\n"
"If you need continued support for an older version, let us know at:\n"
" https://github.com/hibtc/cpymad/issues")
warnings.warn(_unsupported_version, DeprecationWarning)
Expand Down

0 comments on commit 7a5143e

Please sign in to comment.