diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2019-02-03 10:25:50 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2019-02-03 10:25:50 -0500 |
commit | a08cf8bc0d4d06b9f185b62518f173ebd1d4c9f1 (patch) | |
tree | dd1d2d6532a648949c4674a48167b920fb0d7668 | |
parent | f03ef2074c30f7772c1d49fc92beb5b0f9d79e63 (diff) | |
download | python-setuptools-git-40.7-maintenance.tar.gz |
Bump version: 40.7.2 → 40.7.3v40.7.340.7-maintenance
-rw-r--r-- | CHANGES.rst | 6 | ||||
-rw-r--r-- | changelog.d/1670.change.rst | 1 | ||||
-rw-r--r-- | setup.cfg | 2 | ||||
-rwxr-xr-x | setup.py | 2 |
4 files changed, 8 insertions, 3 deletions
diff --git a/CHANGES.rst b/CHANGES.rst index 7d1353b4..62896220 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,9 @@ +v40.7.3 +------- + +* #1670: In package_index, revert to using a copy of splituser from Python 3.8. Attempts to use ``urllib.parse.urlparse`` led to problems as reported in #1663 and #1668. This change serves as an alternative to #1499 and fixes #1668. + + v40.7.2 ------- diff --git a/changelog.d/1670.change.rst b/changelog.d/1670.change.rst deleted file mode 100644 index abad7950..00000000 --- a/changelog.d/1670.change.rst +++ /dev/null @@ -1 +0,0 @@ -In package_index, revert to using a copy of splituser from Python 3.8. Attempts to use ``urllib.parse.urlparse`` led to problems as reported in #1663 and #1668. This change serves as an alternative to #1499 and fixes #1668. @@ -1,5 +1,5 @@ [bumpversion] -current_version = 40.7.2 +current_version = 40.7.3 commit = True tag = True @@ -89,7 +89,7 @@ def pypi_link(pkg_filename): setup_params = dict( name="setuptools", - version="40.7.2", + version="40.7.3", description=( "Easily download, build, install, upgrade, and uninstall " "Python packages" |