From 9b09935cd46b784529667135463c4f4a29a60bd3 Mon Sep 17 00:00:00 2001 From: Sep Dehpour Date: Thu, 30 Jan 2020 13:32:11 -0800 Subject: [PATCH] setup.py had old sys version detection --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index c4cfe654..8010db1c 100755 --- a/setup.py +++ b/setup.py @@ -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,