diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2020-01-11 23:35:41 -0500 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2020-01-11 23:35:41 -0500 |
| commit | c30a9652fb3bcf941ba17ccda3f577e0c4d99d07 (patch) | |
| tree | 457286b4bad2019ba5dddfb6c6624646d0893ded | |
| parent | 1b03e7a3d35cf22b0561b44a6abd81d921d550e9 (diff) | |
| download | external_python_setuptools-c30a9652fb3bcf941ba17ccda3f577e0c4d99d07.tar.gz external_python_setuptools-c30a9652fb3bcf941ba17ccda3f577e0c4d99d07.tar.bz2 external_python_setuptools-c30a9652fb3bcf941ba17ccda3f577e0c4d99d07.zip | |
Bump version: 44.0.0 → 45.0.0v45.0.0
| -rw-r--r-- | .bumpversion.cfg | 2 | ||||
| -rw-r--r-- | CHANGES.rst | 7 | ||||
| -rw-r--r-- | changelog.d/1458.breaking.rst | 1 | ||||
| -rw-r--r-- | changelog.d/1959.change.rst | 1 | ||||
| -rw-r--r-- | setup.cfg | 2 |
5 files changed, 9 insertions, 4 deletions
diff --git a/.bumpversion.cfg b/.bumpversion.cfg index e1bfa898..77143907 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 44.0.0 +current_version = 45.0.0 commit = True tag = True diff --git a/CHANGES.rst b/CHANGES.rst index 109a3f48..4a81e995 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,10 @@ +v45.0.0 +------- + +* #1458: Drop support for Python 2. Setuptools now requires Python 3.5 or later. Install setuptools using pip >=9 or pin to Setuptools <45 to maintain 2.7 support. +* #1959: Fix for Python 4: replace unsafe six.PY3 with six.PY2 + + v44.0.0 ------- diff --git a/changelog.d/1458.breaking.rst b/changelog.d/1458.breaking.rst deleted file mode 100644 index 3004722c..00000000 --- a/changelog.d/1458.breaking.rst +++ /dev/null @@ -1 +0,0 @@ -Drop support for Python 2. Setuptools now requires Python 3.5 or later. Install setuptools using pip >=9 or pin to Setuptools <45 to maintain 2.7 support. diff --git a/changelog.d/1959.change.rst b/changelog.d/1959.change.rst deleted file mode 100644 index c0cc8975..00000000 --- a/changelog.d/1959.change.rst +++ /dev/null @@ -1 +0,0 @@ -Fix for Python 4: replace unsafe six.PY3 with six.PY2 @@ -19,7 +19,7 @@ universal = 1 [metadata] name = setuptools -version = 44.0.0 +version = 45.0.0 description = Easily download, build, install, upgrade, and uninstall Python packages author = Python Packaging Authority author_email = distutils-sig@python.org |
