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 d555785 commit ee80343
Showing 1 changed file with 2 additions and 2 deletions.
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 ee80343

Please sign in to comment.