Skip to content

Commit

Permalink
Remove support for Python 3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigc committed Dec 17, 2017
1 parent c182ae0 commit 0d495ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/twisted/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ def _checkRequirements():
version = getattr(sys, "version_info", (0,))
if version < (2, 7):
raise ImportError("Twisted requires Python 2.7 or later.")
elif version >= (3, 0) and version < (3, 3):
raise ImportError("Twisted on Python 3 requires Python 3.3 or later.")
elif version >= (3, 0) and version < (3, 4):
raise ImportError("Twisted on Python 3 requires Python 3.4 or later.")

_checkRequirements()

Expand Down

0 comments on commit 0d495ef

Please sign in to comment.