Skip to content

Commit

Permalink
setup.py had old sys version detection
Browse files Browse the repository at this point in the history
  • Loading branch information
seperman committed Jan 30, 2020
1 parent c2bd1f1 commit 9b09935
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import sys
from setuptools import setup

if sys.version_info.major[0] == 2: # pragma: no cover
if sys.version_info.major == 2: # pragma: no cover
sys.exit('Python 2 is not supported anymore. The last version of DeepDiff that supported Py2 was 3.3.0')

# if you are not using vagrant, just delete os.link directly,
Expand Down

0 comments on commit 9b09935

Please sign in to comment.