Skip to content

Commit 9975924

Browse files
authored
Split requirements.txt to factor out hypothesis and prompt_toolkit (#1407)
* Split requirements.txt to factor out hypothesis and prompt_toolkit * Point config.yml to new requirements file * Rewrite setup.py to use pathlib * Correct documentation update * Attempt to exclude condition import from coverage * Change pragma no cover for human strategy inclusion * Attempt to fix unused-import check for human strategy when prompt_toolkit is missing * Format with black
1 parent 2c5d437 commit 9975924

File tree

8 files changed

+53
-15
lines changed

8 files changed

+53
-15
lines changed

.github/workflows/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Install dependencies
2626
run: |
2727
python -m pip install --upgrade pip
28-
python -m pip install -r requirements.txt
28+
python -m pip install -r requirements/development.txt
2929
- name: Check that documentation builds
3030
run: |
3131
python -m pip install sphinx

axelrod/strategies/_strategies.py

+13-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020
)
2121
# isort:skip_file
2222
"""
23+
import warnings
24+
2325
from .adaptive import Adaptive
2426
from .adaptor import AdaptorBrief, AdaptorLong
2527
from .alternator import Alternator
@@ -149,7 +151,17 @@
149151
from .handshake import Handshake
150152
from .hmm import EvolvedHMM5
151153
from .hmm import EvolvableHMMPlayer, HMMPlayer # pylint: disable=unused-import
152-
from .human import Human # pylint: disable=unused-import
154+
155+
try:
156+
from .human import Human # pylint: disable=unused-import
157+
except ImportError as ie: # pragma: no cover
158+
# Check that the expected module is missing and no other.
159+
if ie.name == "prompt_toolkit":
160+
warnings.warn(
161+
"Human strategy not available because python package prompt_toolkit is not available."
162+
)
163+
else:
164+
raise ie
153165
from .hunter import (
154166
AlternatorHunter,
155167
CooperatorHunter,

docs/how-to/contributing/setting_up_the_environment.rst

+9-3
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,23 @@ Setting up the environment
44
Installing all dependencies
55
---------------------------
66

7-
All dependencies can be installed by running::
7+
All development dependencies can be installed by running::
88

9-
$ pip install -r requirements.txt
9+
$ pip install -r requirements/development.txt
1010

1111
It is recommended to do this using a virtual environment tool of your choice.
1212

1313
For example, when using the virtual environment library :code:`venv`::
1414

1515
$ python -m venv axelrod_development
1616
$ source axelrod_development/bin/activate
17-
$ pip install -r requirements.txt
17+
$ pip install -r requirements/development.txt
18+
19+
Alternatively, you can specify the development variant rather than the path::
20+
21+
$ python -m venv axelrod_development
22+
$ source axelrod_development/bin/activate
23+
$ pip install .[development]
1824

1925
The git workflow
2026
----------------

docs/tutorials/new_to_game_theory_and_or_python/installation.rst

+3
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ repository::
1010

1111
$ pip install axelrod
1212

13+
If you want to have access to the manual Human strategy for interactive play, use the following command to also install `prompt_toolkit`::
14+
15+
$ pip install axelrod[Human]
1316

1417
You can also build it from source if you would like to::
1518

requirements/development.txt

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
-r requirements.txt
2+
-r human.txt
3+
hypothesis==5.19.3

requirements/human.txt

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
-r requirements.txt
2+
prompt-toolkit>=3.0

requirements.txt requirements/requirements.txt

+1-3
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,11 @@
22
cloudpickle>=0.2.2
33
fsspec>=0.6.0
44
toolz>=0.8.2
5-
65
dask>=2.9.2
7-
hypothesis==5.19.3
6+
87
matplotlib>=3.0.3
98
numpy>=1.17.4
109
pandas>=1.0.0
11-
prompt-toolkit>=3.0
1210
pyyaml>=5.1
1311
scipy>=1.3.3
1412
tqdm>=4.39.0

setup.py

+21-7
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,24 @@
1+
from collections import defaultdict
2+
import os
3+
import pathlib
14
from setuptools import setup
25

3-
# Read in the requirements.txt file
4-
with open("requirements.txt") as f:
5-
requirements = []
6-
for library in f.read().splitlines():
7-
if "hypothesis" not in library: # Skip: used only for dev
8-
requirements.append(library)
6+
# Read in the requirements files.
7+
requirements = defaultdict(list)
8+
9+
requirements_directory = pathlib.Path.cwd() / "requirements"
10+
for filename in requirements_directory.glob("*.txt"):
11+
variant = filename.stem
12+
with filename.open() as libraries:
13+
for library in libraries:
14+
if len(library) > 0 and (not library.startswith("-r")):
15+
requirements[variant].append(library.strip())
16+
17+
# Grab the default requirements
18+
install_requires = requirements["requirements"]
19+
# Delete the default from the dictionary for the extra variants.
20+
del requirements["requirements"]
21+
extras_require = dict(requirements)
922

1023
# Read in long description
1124
with open("README.rst", "r") as f:
@@ -17,7 +30,7 @@
1730
setup(
1831
name="Axelrod",
1932
version=__version__,
20-
install_requires=requirements,
33+
install_requires=install_requires,
2134
author="Vince Knight, Owen Campbell, Karol Langner, Marc Harper",
2235
author_email=("[email protected]"),
2336
packages=["axelrod", "axelrod.strategies", "axelrod.data"],
@@ -35,4 +48,5 @@
3548
"Programming Language :: Python :: 3 :: Only",
3649
],
3750
python_requires=">=3.6",
51+
extras_require=extras_require,
3852
)

0 commit comments

Comments
 (0)