diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2020-06-16 17:29:27 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2020-06-16 17:29:27 -0400 |
commit | 145a78cdc1afb4ce0c0208ae86a00708eb79d27b (patch) | |
tree | c834311d6dd1bc9ff81aea32fb883bbd68da9270 | |
parent | 08ae4203c9feef98d4c2dffd2bd48308fdc5bee6 (diff) | |
download | external_python_setuptools-145a78cdc1afb4ce0c0208ae86a00708eb79d27b.tar.gz external_python_setuptools-145a78cdc1afb4ce0c0208ae86a00708eb79d27b.tar.bz2 external_python_setuptools-145a78cdc1afb4ce0c0208ae86a00708eb79d27b.zip |
Bump version: 47.3.0 → 47.3.1v47.3.1
-rw-r--r-- | .bumpversion.cfg | 2 | ||||
-rw-r--r-- | CHANGES.rst | 7 | ||||
-rw-r--r-- | changelog.d/1973.misc.rst | 1 | ||||
-rw-r--r-- | changelog.d/2198.misc.rst | 1 | ||||
-rw-r--r-- | setup.cfg | 2 |
5 files changed, 9 insertions, 4 deletions
diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 1bdc4be3..9b106cfa 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 47.3.0 +current_version = 47.3.1 commit = True tag = True diff --git a/CHANGES.rst b/CHANGES.rst index 16608ddc..799163ed 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,10 @@ +v47.3.1 +------- + +* #1973: Removed ``pkg_resources.py31compat.makedirs`` in favor of the stdlib. Use ``os.makedirs()`` instead. +* #2198: Restore ``__requires__`` directive in easy-install wrapper scripts. + + v47.3.0 ------- diff --git a/changelog.d/1973.misc.rst b/changelog.d/1973.misc.rst deleted file mode 100644 index 398fdd71..00000000 --- a/changelog.d/1973.misc.rst +++ /dev/null @@ -1 +0,0 @@ -Removed ``pkg_resources.py31compat.makedirs`` in favor of the stdlib. Use ``os.makedirs()`` instead. diff --git a/changelog.d/2198.misc.rst b/changelog.d/2198.misc.rst deleted file mode 100644 index d4b4be38..00000000 --- a/changelog.d/2198.misc.rst +++ /dev/null @@ -1 +0,0 @@ -Restore ``__requires__`` directive in easy-install wrapper scripts. @@ -16,7 +16,7 @@ formats = zip [metadata] name = setuptools -version = 47.3.0 +version = 47.3.1 description = Easily download, build, install, upgrade, and uninstall Python packages author = Python Packaging Authority author_email = distutils-sig@python.org |