From 7a5143e7621bdd1e841bfde0f3d7a02aa29e71f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Gl=C3=A4=C3=9Fle?= Date: Sun, 15 Dec 2024 23:44:38 +0100 Subject: [PATCH] Deprecate python 3.8 (EOL) --- README.rst | 4 ++-- src/cpymad/__init__.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.rst b/README.rst index 974bf64a..28bc2b92 100644 --- a/README.rst +++ b/README.rst @@ -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 diff --git a/src/cpymad/__init__.py b/src/cpymad/__init__.py index 82ca2a73..d68ad005 100644 --- a/src/cpymad/__init__.py +++ b/src/cpymad/__init__.py @@ -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)