Skip to content

Commit

Permalink
Update Python version check to match lowest supported version
Browse files Browse the repository at this point in the history
  • Loading branch information
ku1ik committed Oct 23, 2023
1 parent ff7abc6 commit 1a71be2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions asciinema/__init__.py
Expand Up @@ -3,8 +3,8 @@
__author__ = "Marcin Kulik"
__version__ = "2.4.0"

if sys.version_info < (3, 6):
raise ImportError("Python < 3.6 is unsupported.")
if sys.version_info < (3, 7):
raise ImportError("Python < 3.7 is unsupported.")

# pylint: disable=wrong-import-position
from typing import Any, Optional
Expand Down

0 comments on commit 1a71be2

Please sign in to comment.