Skip to content

Commit

Permalink
Merge pull request #79 from ZaxR/hotfix/docs-build
Browse files Browse the repository at this point in the history
hotfix docs building issue by pinning Sphinx v2.x.x
  • Loading branch information
ZaxR authored May 30, 2020
2 parents a0df636 + 6861137 commit 97e6c89
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@
# Requirements placed here for convenient viewing
install_requires = ['numpy>=1.15', 'pandas>=0.23.0']
tests_requires = ["pytest", "pytest-cov"]
docs_requires = ["m2r", "setuptools>=30.4", "Sphinx", "sphinx_rtd_theme"]
# Upgrading to Sphinx 3.x.x requires m2r
# to merge this pr: https://github.com/miyakogi/m2r/pull/55
docs_requires = ["m2r", "setuptools>=30.4", "Sphinx~=2.0", "sphinx_rtd_theme"]
dev_requires = tests_requires + docs_requires + ["pre-commit", "tox"]

name = project_info.NAME
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = lint, py35, py36, py37, docs, coverage-report
envlist = lint, py36, py37, py38, docs, coverage-report
skip_missing_interpreters=True

[travis]
Expand Down

0 comments on commit 97e6c89

Please sign in to comment.