From 5337ae1a4c048e332292c8fdedd61fbd561fac9a Mon Sep 17 00:00:00 2001
From: Vincent Philippon <vphilippon@users.noreply.github.com>
Date: Mon, 29 Oct 2018 10:37:39 -0400
Subject: [PATCH] Revert "Bail if building with Py3"

---
 setup.py | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/setup.py b/setup.py
index 3cad4492..2f7b36a3 100755
--- a/setup.py
+++ b/setup.py
@@ -12,9 +12,6 @@
 except ImportError:
     from distutils.core import setup
 
-if sys.argv[-1] == 'sdist' and sys.version_info[0] >= 3:
-    print('ERROR: You must build python-future with Python 2', file=sys.stderr)
-    sys.exit(1)
 
 if sys.argv[-1] == 'publish':
     os.system('python setup.py sdist upload')