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

bpo-45618: Fix documentation build by pinning Docutils version #29230

Merged
merged 2 commits into from Oct 27, 2021

Conversation

m-aciek
Copy link
Contributor

@m-aciek m-aciek commented Oct 26, 2021

Since the release of Docutils 0.18 today building Python documentation fails.

In CPython repository we have Sphinx pinned to 3.2.1, which has too loose requirement for Docutils version in install_requires – docutils>=0.12.

Example of failing build: https://github.com/python/python-docs-pl/runs/4009459257.

The pin can be removed after bumping Sphinx to at least 3.5.4, which introduced upper limit for docutils version.

sphinx-doc/sphinx@9263eea

https://bugs.python.org/issue45618

@erlend-aasland
Copy link
Contributor

@erlend-aasland erlend-aasland commented Oct 27, 2021

Doc/requirements.txt Outdated Show resolved Hide resolved
Co-authored-by: Erlend Egeberg Aasland <erlend.aasland@innova.no>
Copy link
Member

@ned-deily ned-deily left a comment

This should be OK as at least a temporary measure. I would like @JulienPalard as the documentation release expert to review the situation for a permanent solution. Other things will need to be updated one way or another.

@ned-deily ned-deily merged commit bcee6aa into python:main Oct 27, 2021
12 checks passed
@miss-islington
Copy link
Contributor

@miss-islington miss-islington commented Oct 27, 2021

Thanks @m-aciek for the PR, and @ned-deily for merging it 🌮🎉.. I'm working now to backport this PR to: 3.9, 3.10.
🐍🍒🤖

miss-islington added a commit to miss-islington/cpython that referenced this issue Oct 27, 2021
…7.1 (pythonGH-29230)

Co-authored-by: Maciej Olko <maciej.olko@yougov.com>
Co-authored-by: Erlend Egeberg Aasland <erlend.aasland@innova.no>
(cherry picked from commit bcee6aa)

Co-authored-by: m-aciek <m-aciek@users.noreply.github.com>
@miss-islington
Copy link
Contributor

@miss-islington miss-islington commented Oct 27, 2021

Sorry, @m-aciek and @ned-deily, I could not cleanly backport this to 3.9 due to a conflict.
Please backport using cherry_picker on command line.
cherry_picker bcee6aa31550cfecdc3acecbd0e4447bb0051887 3.9

@bedevere-bot
Copy link

@bedevere-bot bedevere-bot commented Oct 27, 2021

GH-29240 is a backport of this pull request to the 3.10 branch.

ned-deily added a commit to ned-deily/cpython that referenced this issue Oct 27, 2021
…7.1 (pythonGH-29230)

Co-authored-by: Maciej Olko <maciej.olko@yougov.com>
Co-authored-by: Erlend Egeberg Aasland <erlend.aasland@innova.no>
@bedevere-bot
Copy link

@bedevere-bot bedevere-bot commented Oct 27, 2021

GH-29241 is a backport of this pull request to the 3.9 branch.

ned-deily pushed a commit that referenced this issue Oct 27, 2021
…7.1 (GH-29230) (GH-29240)

Co-authored-by: Maciej Olko <maciej.olko@yougov.com>
Co-authored-by: Erlend Egeberg Aasland <erlend.aasland@innova.no>
(cherry picked from commit bcee6aa)
@JulienPalard
Copy link
Member

@JulienPalard JulienPalard commented Oct 27, 2021

Thanks @m-aciek and @ned-deily for acting fast on this! The docutils release also broke pospell we use python-docs-fr side, I should have suspected it would broke Sphinx too, but I did not.

ned-deily added a commit that referenced this issue Oct 27, 2021
…to 0.17.1 (GH-29230) (GH-29241)

Co-authored-by: Maciej Olko <maciej.olko@yougov.com>
Co-authored-by: Erlend Egeberg Aasland <erlend.aasland@innova.no>
@erlend-aasland
Copy link
Contributor

@erlend-aasland erlend-aasland commented Oct 27, 2021

3.8 is not EOL yet, so I guess we have to backport to 3.8 as well, @ambv?

ned-deily added a commit to ned-deily/cpython that referenced this issue Oct 27, 2021
…to 0.17.1 (pythonGH-29230) (pythonGH-29241)

Co-authored-by: Maciej Olko <maciej.olko@yougov.com>
Co-authored-by: Erlend Egeberg Aasland <erlend.aasland@innova.no>
@ned-deily
Copy link
Member

@ned-deily ned-deily commented Oct 27, 2021

Yes, thanks, I've just submitted a 3.8 PR. Also, 3.7 and 3.6 are affected as well, since we build documentation for security-fix branches. But the backport is a little more complicated for them because the changes that introduced the use of requirements.txt in the Doc Makefile were never backported to them. I should have done that before, we should do it now. If anyone gets to it first, yay.

@m-aciek m-aciek deleted the docs-pin-docutils branch Oct 27, 2021
ambv pushed a commit that referenced this issue Oct 28, 2021
…to 0.17.1 (GH-29230) (GH-29241) (GH-29245)

Co-authored-by: Maciej Olko <maciej.olko@yougov.com>
Co-authored-by: Erlend Egeberg Aasland <erlend.aasland@innova.no>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment