msg293775 - (view) |
Author: Brett Cannon (brett.cannon) *  |
Date: 2017-05-16 17:29 |
The Travis file uses `make venv` which does `python3 -m pip install --upgrade sphinx` which is pulling in Sphinx 1.6.1 which was released today (under Python 2.7 the pip call is direct instead of using `make venv`). The problem is that Sphinx 1.6.1 adds some new warnings that then is flagging the docs build as failing. To fix this we should probably stop calling `make venv` in .travis.yml and instead explicitly install Sphinx 1.5.6 for the docs build. Once Travis is green again a separate PR can be done to update `master` to build cleanly under Sphinx 1.6.1. |
|
|
msg293776 - (view) |
Author: Brett Cannon (brett.cannon) *  |
Date: 2017-05-16 17:30 |
Technically it's probably best to do `python3 -m pip install sphinx~=1.5.6` so bugfix releases are picked up. |
|
|
msg293777 - (view) |
Author: Serhiy Storchaka (serhiy.storchaka) *  |
Date: 2017-05-16 18:20 |
PR 1613 tries to fix a warning by using explicit footnote numbering. |
|
|
msg293779 - (view) |
Author: Serhiy Storchaka (serhiy.storchaka) *  |
Date: 2017-05-16 20:18 |
New changeset d97b7dc94b19063f0589d401bdc4aaadc7030762 by Serhiy Storchaka in branch 'master': bpo-30380: Fix Sphinx 1.6.1 warnings. (#1613) https://github.com/python/cpython/commit/d97b7dc94b19063f0589d401bdc4aaadc7030762 |
|
|
msg293783 - (view) |
Author: Brett Cannon (brett.cannon) *  |
Date: 2017-05-16 20:48 |
New changeset fca224f117d25bdfec1bf7160b67438c4fcf6dee by Brett Cannon (Mariatta) in branch 'master': bpo-30380: Pin the version of Sphinx used to build the documentation (GH-1612) https://github.com/python/cpython/commit/fca224f117d25bdfec1bf7160b67438c4fcf6dee |
|
|
msg293788 - (view) |
Author: Serhiy Storchaka (serhiy.storchaka) *  |
Date: 2017-05-16 21:09 |
New changeset 8fc1ff51adb52c80f6bf78393413c72543bae3e1 by Serhiy Storchaka in branch '3.6': [3.6] bpo-30380: Fix Sphinx 1.6.1 warnings. (GH-1613) (#1614) https://github.com/python/cpython/commit/8fc1ff51adb52c80f6bf78393413c72543bae3e1 |
|
|
msg293795 - (view) |
Author: Brett Cannon (brett.cannon) *  |
Date: 2017-05-16 21:28 |
New changeset 5e2016dce92d66e6e1fb25e6ce39031d8c7d5412 by Brett Cannon in branch '3.6': bpo-30380: Pin the version of Sphinx used to build the docs (GH-1612) (GH-1617) https://github.com/python/cpython/commit/5e2016dce92d66e6e1fb25e6ce39031d8c7d5412 |
|
|
msg293797 - (view) |
Author: Brett Cannon (brett.cannon) *  |
Date: 2017-05-16 21:29 |
New changeset 083f13e34c0b9f9ed4ed64fed3989d4af97843b3 by Brett Cannon (Serhiy Storchaka) in branch '3.5': [3.5] bpo-30380: Fix Sphinx 1.6.1 warnings. (GH-1613) (GH-1615) https://github.com/python/cpython/commit/083f13e34c0b9f9ed4ed64fed3989d4af97843b3 |
|
|
msg293800 - (view) |
Author: Brett Cannon (brett.cannon) *  |
Date: 2017-05-16 21:40 |
New changeset 77606957e71ce477d2c5569718f0fc36f05c6f59 by Brett Cannon in branch '3.5': bpo-30380: Pin the version of Sphinx used to build the documentation (GH-1612) (GH-1618) https://github.com/python/cpython/commit/77606957e71ce477d2c5569718f0fc36f05c6f59 |
|
|
msg293801 - (view) |
Author: Brett Cannon (brett.cannon) *  |
Date: 2017-05-16 21:41 |
New changeset 97eb2a7d77011605e8fc49e754cd371ead4366bc by Brett Cannon in branch '2.7': [2.7] bpo-30380: Pin the version of Sphinx used to build the docs (GH-1612) (GH-1619) https://github.com/python/cpython/commit/97eb2a7d77011605e8fc49e754cd371ead4366bc |
|
|
msg293802 - (view) |
Author: Brett Cannon (brett.cannon) *  |
Date: 2017-05-16 21:46 |
All branches should be green again. Serhiy has a PR out to fix 2.7 for Sphinx 1.6.1, but it isn't passing yet so that branch is pinned to 1.5.6 until then. I will leave this issue open for Serhiy to close once his 2.7 PR is merged. |
|
|
msg293812 - (view) |
Author: Serhiy Storchaka (serhiy.storchaka) *  |
Date: 2017-05-16 22:26 |
New changeset b8b9f95f660d00ce9bd11bd9de429176858be3c5 by Serhiy Storchaka in branch '2.7': [2.7] bpo-30380: Fix Sphinx 1.6.1 warnings. (GH-1613) (#1616) https://github.com/python/cpython/commit/b8b9f95f660d00ce9bd11bd9de429176858be3c5 |
|
|
msg293843 - (view) |
Author: Serhiy Storchaka (serhiy.storchaka) *  |
Date: 2017-05-17 06:16 |
There was other warnings, mostly false positive, but there were also the real documentation bugs. Sphinx now converts quotes to Unicode variants at earlier stage (this is good thing, because converting them at late stage, in HTML, not always worked), and rules in susp-ignored.csv containing '"' no longer worked. Now warnings in 2.7 are fixed and Sphinx can be pinned to 1.6.1. |
|
|
msg294210 - (view) |
Author: Brett Cannon (brett.cannon) *  |
Date: 2017-05-23 01:10 |
All branches are now pinned to and working under Sphinx 1.6.1, so I'm closing this as fixed! |
|
|