We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f4037bd commit 26afcb5Copy full SHA for 26afcb5
1 file changed
odml/__init__.py
@@ -33,7 +33,7 @@ def _format_warning(warn_msg, *args, **kwargs):
33
msg = "Python 2 has reached end of live."
34
msg += "\n\todML support for Python 2 has been dropped."
35
warnings.warn(msg, category=DeprecationWarning, stacklevel=2)
36
-elif _python_version.major == 3 and _python_version.minor < 6:
+elif _python_version.major == 3 and _python_version.minor < 7:
37
msg = "The '%s' package is not tested with your Python version. " % __name__
38
msg += "\n\tPlease consider upgrading to the latest Python distribution."
39
warnings.warn(msg)
0 commit comments