From 488dd0289382b3b8b802a93733022ab213566a56 Mon Sep 17 00:00:00 2001 From: chfw Date: Sat, 12 Dec 2020 17:29:22 +0000 Subject: [PATCH] This is an auto-commit, updating project meta data, such as changelog.rst, contributors.rst --- .readthedocs.yml | 18 ++++++++++++++++++ CONTRIBUTORS.rst | 3 ++- requirements.txt | 2 +- setup.py | 2 +- 4 files changed, 22 insertions(+), 3 deletions(-) create mode 100644 .readthedocs.yml diff --git a/.readthedocs.yml b/.readthedocs.yml new file mode 100644 index 0000000..a379070 --- /dev/null +++ b/.readthedocs.yml @@ -0,0 +1,18 @@ +# .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/source/conf.py + +# Optionally build your docs in additional formats such as PDF +formats: + - pdf + +# Optionally set the version of Python and requirements required to build your docs +python: + version: 3.7 diff --git a/CONTRIBUTORS.rst b/CONTRIBUTORS.rst index 9265c0f..aa6bd68 100644 --- a/CONTRIBUTORS.rst +++ b/CONTRIBUTORS.rst @@ -1,8 +1,9 @@ -1 contributors +2 contributors ================================================================================ In alphabetical order: * `John Vandenberg `_ +* `Peter Carnesciali `_ diff --git a/requirements.txt b/requirements.txt index 65ffc34..4c06b39 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,3 @@ pyexcel-io>=0.6.2 -xlrd<2 +xlrd xlwt diff --git a/setup.py b/setup.py index f88e4ab..135f172 100644 --- a/setup.py +++ b/setup.py @@ -69,7 +69,7 @@ PYTHON_REQUIRES = ">=3.6" INSTALL_REQUIRES = [ "pyexcel-io>=0.6.2", - "xlrd<2", + "xlrd", "xlwt", ] SETUP_COMMANDS = {}