Problem: Python version is not compatible with the Driver (#2183)

Solution: revert commit d28b9019c08495789f86b81ef8283865fb031184.
This commit is contained in:
codegeschrei 2018-04-06 11:13:42 +02:00 committed by vrde
parent 8c1ee8329e
commit b8f78e34d0

View File

@ -5,12 +5,8 @@ For full docs visit https://docs.bigchaindb.com
"""
from setuptools import setup, find_packages
import sys
if sys.version_info < (3, 6):
sys.exit('Please use python version 3.6 or higher')
# get the version
version = {}
with open('bigchaindb/version.py') as fp:
@ -111,7 +107,7 @@ setup(
author_email='dev@bigchaindb.com',
license='Apache Software License 2.0',
zip_safe=False,
python_requires='>=3.6',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',