Skip to content

Commit b940458

Browse files
drvinceknightmarcharper
authored andcommitted
Add lower bound for python in setup.
This ensures that if you pip install axelrod with an unsupported verion of python that you get an error message: ``` (test-axelrod-on-3.4) ~: pip install ~/src/Axelrod Processing ./src/Axelrod Axelrod requires Python '>=3.5' but the running Python is 3.4.5 ```
1 parent 5f527fb commit b940458

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@
2929
'Programming Language :: Python :: 3.6',
3030
'Programming Language :: Python :: 3 :: Only',
3131
],
32-
python_requires='>=3.0',
32+
python_requires='>=3.5',
3333
)

0 commit comments

Comments
 (0)