Skip to content

Commit ed2e571

Browse files
committed
Announce pending deprecation of python3.4 branch
Signed-off-by: Aleksei Stepanov <penguinolog@gmail.com>
1 parent ad091ba commit ed2e571

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

exec_helpers/__init__.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
)
3434

3535
import pkg_resources
36+
import warnings
3637

3738
from .proc_enums import ExitCodes
3839

@@ -65,6 +66,11 @@
6566
except ImportError:
6667
pass
6768

69+
warnings.warn(
70+
"Python 3.4 is going to reach EOL. Please update to fresh python and use newer versions of Exec-Helpers.",
71+
PendingDeprecationWarning
72+
)
73+
6874
__author__ = "Alexey Stepanov"
6975
__author_email__ = "penguinolog@gmail.com"
7076
__maintainers__ = {

0 commit comments

Comments
 (0)