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

Add Furo to install_requires and bump Sphinx requirement to 6.0+ #339

Merged
merged 1 commit into from
May 24, 2023
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,3 @@ sphinx-design
sphinx-autodoc-typehints
nbsphinx==0.9.*
pytest==7.*
# Move to setup.py once they do a stable release.
furo @ git+https://github.com/pradyunsg/furo.git@48c0bf2aa983fb1ccd79b4167fe85387249afedf
9 changes: 7 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,13 @@
],
install_requires=[
"docutils",
"sphinx",
"sphinxcontrib-jquery", # Remove once we get rid of the Pytorch theme.
# Keep in sync with Furo's constraint.
"sphinx>=6.0",
# Remove jQuery once we get rid of the Pytorch theme.
"sphinxcontrib-jquery",
# When upgrading Furo, closely analyze each commit in the release to check for any changes
# that would break our fork.
"furo==2023.5.20",
],
project_urls={
"Bug Tracker": "https://github.com/Qiskit/qiskit_sphinx_theme/issues",
Expand Down