summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2017-09-23 14:49:52 -0400
committerTodd Leonhardt <todd.leonhardt@gmail.com>2017-09-23 14:49:52 -0400
commit7388e0d256f4e37a0003e3e8ff5ebf47b09aeaf3 (patch)
tree5493ebc9a048dbe65efcfde232b3e57ead29e28d
parentb49ec49efa5fe8c87f4447d4f821c41ff9a20325 (diff)
downloadcmd2-git-7388e0d256f4e37a0003e3e8ff5ebf47b09aeaf3.tar.gz
Hopefully this fixes a bug which is causing autodoc to fail to add method info on readthedocs
I can build the docs locally and it works fine, but the autodoc part of Sphinx was failing on readthedocs - and it was failing due to pyperclip not being present
-rw-r--r--CHANGELOG.md2
-rw-r--r--docs/requirements.txt1
2 files changed, 3 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 7a8e8d1b..dd4011ac 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,9 +2,11 @@
* Bug Fixes
* Fixed ``poutput()`` so it can print an integer zero and other **falsy** things
+ * Fixed a bug which was causing autodoc to fail for building docs on Readthedocs
* Enhancements
* Improved documentation for user-settable environment parameters
* Improved documentation for overriding the default supported comment styles
+ * Added ``runcmds_plus_hooks()`` method to run multiple commands w/o a cmdloop
## 0.7.7 (August 25, 2017)
diff --git a/docs/requirements.txt b/docs/requirements.txt
index 8a8af629..fa4e3570 100644
--- a/docs/requirements.txt
+++ b/docs/requirements.txt
@@ -1,2 +1,3 @@
pyparsing
six
+pyperclip