We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cd475a5 + ea1454d commit 14ce542Copy full SHA for 14ce542
setup.py
@@ -3,6 +3,8 @@
3
from setuptools.command.test import test as TestCommand
4
5
6
+if sys.version_info < (3, 0):
7
+ raise ValueError('This package requires python >= 3.0')
8
9
with open('requirements.txt') as fid:
10
install_requires = [l.strip() for l in fid.readlines() if l]
0 commit comments