8000 Use version specifiers for Sphinx requirements by bbayles · Pull Request #76 · ada-url/ada-python · GitHub
[go: up one dir, main page]

Skip to content

Use version specifiers for Sphinx requirements #76

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

Merged
merged 1 commit into from
Apr 18, 2024
Merged
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
Use version specifiers for Sphinx requirements
  • Loading branch information
bbayles committed Apr 18, 2024
commit ed2dd8d18b6d521f7db58d9d246f8d44c127810d
6 changes: 4 additions & 2 deletions requirements/development.txt
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,11 @@ requests-toolbelt==1.0.0
rfc3986==2.0.0
rich==13.7.1
snowballstemmer==2.2.0
sphinxcontrib-applehelp==1.0.4
sphinxcontrib-applehelp==1.0.4;python_version<"3.9"
sphinxcontrib-applehelp==1.0.8;python_version>="3.9"
sphinxcontrib-devhelp==1.0.2
sphinxcontrib-htmlhelp==2.0.1
sphinxcontrib-htmlhelp==2.0.1;python_version<"3.9"
sphinxcontrib-htmlhelp==2.0.5;python_version>="3.9"
sphinxcontrib-jsmath==1.0.1
sphinxcontrib-qthelp==1.0.3
sphinxcontrib-serializinghtml==1.1.5
Expand Down
0