diff options
author | kotfu <kotfu@kotfu.net> | 2018-07-30 23:14:55 -0600 |
---|---|---|
committer | kotfu <kotfu@kotfu.net> | 2018-07-30 23:14:55 -0600 |
commit | c1b326ba4bfd89038b9f903aabe48c760eb54058 (patch) | |
tree | e4115c80716abde38666d397bff51b023ccd18d5 | |
parent | 772e923c6f1a989d2c0caae9f391d190fe133f32 (diff) | |
download | cmd2-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.txt | 5 | ||||
-rw-r--r-- | tox.ini | 8 |
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 @@ -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 = |