diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2020-07-03 15:35:32 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2020-07-03 15:35:32 -0400 |
commit | e7e5817e442b01cb199bfc75c7098fb198fdc3ba (patch) | |
tree | 3418d4786c7998e82625cc79efc81fe388b45ad1 | |
parent | 990237c64404876791dc5985e7cfd260852dac0e (diff) | |
download | external_python_setuptools-e7e5817e442b01cb199bfc75c7098fb198fdc3ba.tar.gz external_python_setuptools-e7e5817e442b01cb199bfc75c7098fb198fdc3ba.tar.bz2 external_python_setuptools-e7e5817e442b01cb199bfc75c7098fb198fdc3ba.zip |
Bump version: 48.0.0 → 49.0.0v49.0.0
-rw-r--r-- | .bumpversion.cfg | 2 | ||||
-rw-r--r-- | CHANGES.rst | 9 | ||||
-rw-r--r-- | changelog.d/2137.change.rst | 1 | ||||
-rw-r--r-- | changelog.d/2165.breaking.rst | 1 | ||||
-rw-r--r-- | changelog.d/2180.change.rst | 1 | ||||
-rw-r--r-- | changelog.d/2199.misc.rst | 1 | ||||
-rw-r--r-- | setup.cfg | 2 |
7 files changed, 11 insertions, 6 deletions
diff --git a/.bumpversion.cfg b/.bumpversion.cfg index bee22c9e..05ff5f18 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 48.0.0 +current_version = 49.0.0 commit = True tag = True diff --git a/CHANGES.rst b/CHANGES.rst index d653d889..bd67931d 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,12 @@ +v49.0.0 +------- + +* #2165: Setuptools no longer installs a site.py file during easy_install or develop installs. As a result, .eggs on PYTHONPATH will no longer take precedence over other packages on sys.path. If this issue affects your production environment, please reach out to the maintainers at #2165. +* #2137: Removed (private) pkg_resources.RequirementParseError, now replaced by packaging.requirements.InvalidRequirement. Kept the name for compatibility, but users should catch InvalidRequirement instead. +* #2180: Update vendored packaging in pkg_resources to 19.2. +* #2199: Fix exception causes all over the codebase by using ``raise new_exception from old_exception`` + + v48.0.0 ------- diff --git a/changelog.d/2137.change.rst b/changelog.d/2137.change.rst deleted file mode 100644 index fb5f5075..00000000 --- a/changelog.d/2137.change.rst +++ /dev/null @@ -1 +0,0 @@ -Removed (private) pkg_resources.RequirementParseError, now replaced by packaging.requirements.InvalidRequirement. Kept the name for compatibility, but users should catch InvalidRequirement instead. diff --git a/changelog.d/2165.breaking.rst b/changelog.d/2165.breaking.rst deleted file mode 100644 index a9b598b9..00000000 --- a/changelog.d/2165.breaking.rst +++ /dev/null @@ -1 +0,0 @@ -Setuptools no longer installs a site.py file during easy_install or develop installs. As a result, .eggs on PYTHONPATH will no longer take precedence over other packages on sys.path. If this issue affects your production environment, please reach out to the maintainers at #2165. diff --git a/changelog.d/2180.change.rst b/changelog.d/2180.change.rst deleted file mode 100644 index 0e660cd9..00000000 --- a/changelog.d/2180.change.rst +++ /dev/null @@ -1 +0,0 @@ -Update vendored packaging in pkg_resources to 19.2. diff --git a/changelog.d/2199.misc.rst b/changelog.d/2199.misc.rst deleted file mode 100644 index f795256b..00000000 --- a/changelog.d/2199.misc.rst +++ /dev/null @@ -1 +0,0 @@ -Fix exception causes all over the codebase by using ``raise new_exception from old_exception``
\ No newline at end of file @@ -16,7 +16,7 @@ formats = zip [metadata] name = setuptools -version = 48.0.0 +version = 49.0.0 description = Easily download, build, install, upgrade, and uninstall Python packages author = Python Packaging Authority author_email = distutils-sig@python.org |