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

DOC/CI: do not allow sphinx 4.1. #14397

Merged
merged 2 commits into from
Jul 13, 2021
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion doc_requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Note: this should disappear at some point. For now, please keep it
# in sync with the doc dependencies in pyproject.toml
Sphinx!=3.1.0
Sphinx!=3.1.0, <4.1.0
pydata-sphinx-theme>=0.6.1
sphinx-panels>=0.5.2
matplotlib>2
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ test = [
"scikit-umfpack",
]
doc = [
"sphinx!=3.1.0",
"sphinx!=3.1.0, <4.1.0",
"pydata-sphinx-theme>=0.6.1",
"sphinx-panels>=0.5.2",
"matplotlib>2",
Expand Down