From 2ff24f67d5f69ac6c392a94ab1e6e2bbd885ec70 Mon Sep 17 00:00:00 2001 From: Sviatoslav Sydorenko Date: Sat, 17 Oct 2020 19:07:22 +0200 Subject: [PATCH 1/3] =?UTF-8?q?=F0=9F=90=9B=F0=9F=93=9D=20Fix=20the=20TOC?= =?UTF-8?q?=20link=20to=20the=20relocated=20dev=20guide?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This change corrects the typo introduced by #2426. --- docs/index.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/index.rst b/docs/index.rst index f8c4725815..b9a7964766 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -15,6 +15,6 @@ Documentation content: references/keywords roadmap setuptools - Development guide + Development guide Backward compatibility & deprecated practice Changelog From e711cb076ddd0813351745050b89d77f6387cf35 Mon Sep 17 00:00:00 2001 From: Sviatoslav Sydorenko Date: Sat, 17 Oct 2020 19:21:30 +0200 Subject: [PATCH 2/3] =?UTF-8?q?=F0=9F=90=9B=F0=9F=93=9D=20Fix=20"Title=20l?= =?UTF-8?q?evel=20inconsistent"=20in=20changelog?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This was caused by #2399 CI invocation happening before merging PR #2427 that made Sphinx nitpicky. --- CHANGES.rst | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index ab03c20abf..30750c0aa0 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -3080,7 +3080,7 @@ process to fail and PyPI uploads no longer accept files for 13.0. connection. Backward-Incompatible Changes -============================= +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ This release includes a couple of backward-incompatible changes, but most if not all users will find 1.0 a drop-in replacement for 0.9. @@ -3670,12 +3670,12 @@ how it parses version numbers. ----- setuptools -========== +^^^^^^^^^^ * Fixed a bunch of calls to file() that caused crashes on Python 3. bootstrapping -============= +^^^^^^^^^^^^^ * Fixed a bug in sorting that caused bootstrap to fail on Python 3. @@ -3683,7 +3683,7 @@ bootstrapping ----- setuptools -========== +^^^^^^^^^^ * Added Python 3 support; see docs/python3.txt. This closes Old Setuptools #39. @@ -3701,7 +3701,7 @@ setuptools This closes Old Setuptools #41. bootstrapping -============= +^^^^^^^^^^^^^ * Fixed bootstrap not working on Windows. This closes issue Distribute #49. @@ -3714,7 +3714,7 @@ bootstrapping ----- setuptools -========== +^^^^^^^^^^ * package_index.urlopen now catches BadStatusLine and malformed url errors. This closes Distribute #16 and Distribute #18. @@ -3731,7 +3731,7 @@ setuptools bootstrapping -============= +^^^^^^^^^^^^^ * The boostrap process leave setuptools alone if detected in the system and --root or --prefix is provided, but is not in the same location. @@ -3741,7 +3741,7 @@ bootstrapping --- setuptools -========== +^^^^^^^^^^ * Packages required at build time where not fully present at install time. This closes Distribute #12. @@ -3758,7 +3758,7 @@ setuptools * Added compatibility with Subversion 1.6. This references Distribute #1. pkg_resources -============= +^^^^^^^^^^^^^ * Avoid a call to /usr/bin/sw_vers on OSX and use the official platform API instead. Based on a patch from ronaldoussoren. This closes issue #5. @@ -3775,7 +3775,7 @@ pkg_resources * Immediately close all file handles. This closes Distribute #3. easy_install -============ +^^^^^^^^^^^^ * Immediately close all file handles. This closes Distribute #3. From a94c2c3d128582adb2457dd978bf98ce40ab11b9 Mon Sep 17 00:00:00 2001 From: Sviatoslav Sydorenko Date: Sat, 17 Oct 2020 19:32:21 +0200 Subject: [PATCH 3/3] =?UTF-8?q?=F0=9F=93=9D=20Add=20change=20notes?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- changelog.d/2430.doc.1.rst | 2 ++ changelog.d/2430.doc.2.rst | 2 ++ 2 files changed, 4 insertions(+) create mode 100644 changelog.d/2430.doc.1.rst create mode 100644 changelog.d/2430.doc.2.rst diff --git a/changelog.d/2430.doc.1.rst b/changelog.d/2430.doc.1.rst new file mode 100644 index 0000000000..d09e0b9e7b --- /dev/null +++ b/changelog.d/2430.doc.1.rst @@ -0,0 +1,2 @@ +Fixed a typo in Sphinx docs that made docs dev section disappear +as a result of PR #2426 -- by :user:`webknjaz` diff --git a/changelog.d/2430.doc.2.rst b/changelog.d/2430.doc.2.rst new file mode 100644 index 0000000000..0ac8782323 --- /dev/null +++ b/changelog.d/2430.doc.2.rst @@ -0,0 +1,2 @@ +Fixed inconsistent RST title nesting levels caused by #2399 +-- by :user:`webknjaz`