summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkotfu <kotfu@kotfu.net>2018-07-30 23:14:55 -0600
committerkotfu <kotfu@kotfu.net>2018-07-30 23:14:55 -0600
commitc1b326ba4bfd89038b9f903aabe48c760eb54058 (patch)
treee4115c80716abde38666d397bff51b023ccd18d5
parent772e923c6f1a989d2c0caae9f391d190fe133f32 (diff)
downloadcmd2-git-c1b326ba4bfd89038b9f903aabe48c760eb54058.tar.gz
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`.
-rw-r--r--docs/requirements.txt5
-rw-r--r--tox.ini8
2 files changed, 5 insertions, 8 deletions
diff --git a/docs/requirements.txt b/docs/requirements.txt
deleted file mode 100644
index 70d293a0..00000000
--- a/docs/requirements.txt
+++ /dev/null
@@ -1,5 +0,0 @@
-attrs
-colorama
-pyperclip
-wcwidth
-cmd2
diff --git a/tox.ini b/tox.ini
index 4250e2d4..487bc28c 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,5 +1,5 @@
[tox]
-envlist = py34,py35,py36,py37,py35-win,py36-win,py37-win
+envlist = docs,py34,py35,py36,py37,py35-win,py36-win,py37-win
[pytest]
testpaths = tests
@@ -11,9 +11,11 @@ setenv =
[testenv:docs]
basepython = python3.7
+deps =
+ sphinx
+ sphinx-rtd-theme
changedir = docs
-extras = dev
-commands = sphinx-build -b html -d {envtmpdir}/doctrees . {envtmpdir}/html
+commands = sphinx-build -a -b html -d {envtmpdir}/doctrees . {envtmpdir}/html
[testenv:py34]
deps =