From 1db34db7f5261eb101a2a3952ff5fea73a828ab0 Mon Sep 17 00:00:00 2001 From: Tom Pollard Date: Fri, 15 Nov 2019 21:50:55 -0500 Subject: [PATCH] readthedocs --- .readthedocs.yml | 23 +++++++++++++++++++++++ docs/conf.py | 4 ++-- setup.py | 1 - 3 files changed, 25 insertions(+), 3 deletions(-) create mode 100644 .readthedocs.yml diff --git a/.readthedocs.yml b/.readthedocs.yml new file mode 100644 index 0000000..c9c187a --- /dev/null +++ b/.readthedocs.yml @@ -0,0 +1,23 @@ +# .readthedocs.yml +# Read the Docs configuration file +# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details + +# Required +version: 2 + +# Build documentation in the docs/ directory with Sphinx +sphinx: + configuration: docs/conf.py + +# Build documentation with MkDocs +#mkdocs: +# configuration: mkdocs.yml + +# Optionally build your docs in additional formats such as PDF and ePub +formats: all + +# Optionally set the version of Python and requirements required to build your docs +python: + version: 3.7 + # install: + # - requirements: requirements.txt \ No newline at end of file diff --git a/docs/conf.py b/docs/conf.py index df30df9..57ab3f8 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -58,9 +58,9 @@ # built documents. # # The short X.Y version. -version = u'0.6.0' +version = u'0.6.4' # The full version, including alpha/beta/rc tags. -release = u'0.6.0' +release = u'0.6.4' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index e46b0fe..2ffb5a6 100644 --- a/setup.py +++ b/setup.py @@ -49,7 +49,6 @@ # requirements files see: # https://packaging.python.org/en/latest/requirements.html install_requires=[ - 'openpyxl>=2.6.3', 'pandas>=0.22.0', 'numpy>=1.12.1', 'scipy>=0.18.1',