Skip to content

Commit

Permalink
Correct the minimum Sphinx version in README (#1320)
Browse files Browse the repository at this point in the history
* Correct the minimum Sphinx version in README

We require Sphinx >= 2.1.

Related: #1216.

* Restore minimum version for Sphinx; see #1216 and #1276
  • Loading branch information
mdickinson authored Oct 21, 2020
1 parent e7adc96 commit 72b1fe3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ Traits has the following optional dependencies:

To build the full documentation one needs:

* `Sphinx <https://pypi.org/project/Sphinx>`_ version 1.8 or later.
* `Sphinx <https://pypi.org/project/Sphinx>`_ version 2.1 or later.
* The `Enthought Sphinx Theme <https://pypi.org/project/enthought-sphinx-theme>`_.
(A version of the documentation can be built without this, but
some formatting may be incorrect.)
2 changes: 1 addition & 1 deletion etstool.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@
"mypy",
"numpy",
"pyqt5",
"Sphinx!=3.2.0",
"Sphinx",
"traitsui",
}

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -301,14 +301,14 @@ def get_long_description():
extras_require={
"docs": [
"enthought-sphinx-theme",
"Sphinx!=3.2.0",
"Sphinx>=2.1.0,!=3.2.0",
],
"test": [
"Cython",
"flake8",
"mypy",
"setuptools",
"Sphinx!=3.2.0",
"Sphinx>=2.1.0,!=3.2.0",
# Python 3.9 exclusions:
#
# * NumPy installation fails on Python 3.9 on the Ubuntu Xenial
Expand Down

0 comments on commit 72b1fe3

Please sign in to comment.