aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CHANGES.rst6
-rw-r--r--changelog.d/1670.change.rst1
-rw-r--r--setup.cfg2
-rwxr-xr-xsetup.py2
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.
diff --git a/setup.cfg b/setup.cfg
index 16db1221..4261f9b6 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,5 +1,5 @@
[bumpversion]
-current_version = 40.7.2
+current_version = 40.7.3
commit = True
tag = True
diff --git a/setup.py b/setup.py
index a009f179..b3e1cc7e 100755
--- a/setup.py
+++ b/setup.py
@@ -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"