Skip to content

Add lower bound for python in setup. #1158

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jan 9, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ a peer reviewed paper introducing the library (22 authors).
Installation
------------

The library requires Python 3.4 or greater. It will not run on Python 2.
The library requires Python 3.5 or greater.

The simplest way to install is::

Expand Down Expand Up @@ -127,7 +127,7 @@ Publications
* Vincent Knight, Owen Campbell, Marc Harper, Karol Langner et al. `An Open Framework for the Reproducible Study of the Iterated Prisoner’s Dilemma. <https://openresearchsoftware.metajnl.com/articles/10.5334/jors.125/>`_ Journal of Open Research Software 4, no. 1 (2016). (`ArXiv Preprint <https://arxiv.org/abs/1604.00896>`_)


Contributors
Contributors
------------

The library has had many awesome contributions from many `great
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/getting_started/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Installation
============

The library requires Python 3.4 or greater. It will not run on Python 2.
The library requires Python 3.5.

The simplest way to install the package is to obtain it from the PyPi
repository::
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3 :: Only',
],
python_requires='>=3.0',
python_requires='>=3.5',
)