Commit e7e5817e authored by Jason R. Coombs's avatar Jason R. Coombs

Bump version: 48.0.0 → 49.0.0

parent 990237c6
[bumpversion]
current_version = 48.0.0
current_version = 49.0.0
commit = True
tag = True
......
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
-------
......
Removed (private) pkg_resources.RequirementParseError, now replaced by packaging.requirements.InvalidRequirement. Kept the name for compatibility, but users should catch InvalidRequirement instead.
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.
Update vendored packaging in pkg_resources to 19.2.
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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment