Skip to content

Commit 9b09935

Browse files
committed
setup.py had old sys version detection
1 parent c2bd1f1 commit 9b09935

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import sys
33
from setuptools import setup
44

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

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

0 commit comments

Comments
 (0)