Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes #1706: 0.14: Pinned Sphinx to below 2.0.0 also for py3.5+ #1711

Merged
merged 1 commit into from
Apr 5, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 5 additions & 1 deletion dev-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,11 @@ pytest-cov>=2.4.0,<2.6
tox>=2.0.0

# Sphinx (no imports, invoked via sphinx-build script, issues on py26):
Sphinx>=1.7.6; python_version >= '2.7'
Sphinx>=1.7.6,<2.0.0; python_version >= '2.7' and python_version < '3.5' # BSD
Sphinx>=1.7.6,<2.0.0; python_version >= '3.5' # BSD
# TODO: On py3.5+, Sphinx currently fails, see issue
# https://github.com/sphinx-doc/sphinx/issues/6246. Therefore, Sphinx has
# been pinned to below 2.0.0 also for py3.5+.
sphinx-git>=10.1.1; python_version >= '2.7'
GitPython>=2.1.1; python_version >= '2.7'

Expand Down