Skip to content

Commit c1b326b

Browse files
committed
Remove docs/requirements.txt which should no longer be used
Slowly trying to reduce the number of places we have dependencies specified. The documentation building processes for both `tox -e docs` and readthedocs.org should now use the dependencies specified in `setup.py`.
1 parent 772e923 commit c1b326b

File tree

2 files changed

+5
-8
lines changed

2 files changed

+5
-8
lines changed

docs/requirements.txt

Lines changed: 0 additions & 5 deletions
This file was deleted.

tox.ini

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py34,py35,py36,py37,py35-win,py36-win,py37-win
2+
envlist = docs,py34,py35,py36,py37,py35-win,py36-win,py37-win
33

44
[pytest]
55
testpaths = tests
@@ -11,9 +11,11 @@ setenv =
1111

1212
[testenv:docs]
1313
basepython = python3.7
14+
deps =
15+
sphinx
16+
sphinx-rtd-theme
1417
changedir = docs
15-
extras = dev
16-
commands = sphinx-build -b html -d {envtmpdir}/doctrees . {envtmpdir}/html
18+
commands = sphinx-build -a -b html -d {envtmpdir}/doctrees . {envtmpdir}/html
1719

1820
[testenv:py34]
1921
deps =

0 commit comments

Comments
 (0)