8000 Docs build: Add upper bounds to transitive dependencies by AlexWaygood · Pull Request #103860 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

Docs build: Add upper bounds to transitive dependencies #103860

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 4 commits into from
Apr 26, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Improve comments
  • Loading branch information
AlexWaygood committed Apr 26, 2023
commit a2dd54f2ecba3af2a122f221d7cceb5d9206047a
6 changes: 6 additions & 0 deletions Doc/constraints.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# We have upper bounds on our transitive dependencies here
# To avoid new releases unexpectedly breaking our build.
# This file can be updated on an ad-hoc basis,
# though it will probably have to be updated
# whenever Doc/requirements.txt is updated.

# Direct dependencies of Sphinx
babel<3
colorama<0.5
Expand Down
5 changes: 3 additions & 2 deletions Doc/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# Requirements to build the Python documentation
#
# Note that when updating this file, you will likely also have to update
# the Doc/constraints.txt file.

# Sphinx version is pinned so that new versions that introduce new warnings
# won't suddenly cause build failures. Updating the version is fine as long
Expand All @@ -14,6 +17,4 @@ sphinxext-opengraph==0.7.5
# to install that as well.
python-docs-theme>=2022.1

# We have upper bounds on our transitive dependencies in constraints.txt
# To avoid new releases unexpectedly breaking our build
-c constraints.txt
0