diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2021-01-23 19:49:42 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2021-01-23 19:49:42 -0500 |
commit | e1ffc2abbae4f2aa78dd09ee9827d754b7702b7b (patch) | |
tree | dadb3be6babddbc1003f494bc121a39fdd438aec | |
parent | 4a4ef0bad70904fad479e803cbe528e756087b93 (diff) | |
download | python-setuptools-git-e1ffc2abbae4f2aa78dd09ee9827d754b7702b7b.tar.gz |
Bump version: 51.3.3 → 52.0.0v52.0.0
-rw-r--r-- | .bumpversion.cfg | 2 | ||||
-rw-r--r-- | CHANGES.rst | 15 | ||||
-rw-r--r-- | changelog.d/2459.change.rst | 1 | ||||
-rw-r--r-- | changelog.d/2537.breaking.rst | 1 | ||||
-rw-r--r-- | changelog.d/2544.breaking.rst | 1 | ||||
-rw-r--r-- | changelog.d/2545.breaking.rst | 1 | ||||
-rw-r--r-- | setup.cfg | 2 |
7 files changed, 17 insertions, 6 deletions
diff --git a/.bumpversion.cfg b/.bumpversion.cfg index debcfeeb..c3bdafab 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 51.3.3 +current_version = 52.0.0 commit = True tag = True diff --git a/CHANGES.rst b/CHANGES.rst index c094960f..79941d8e 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,18 @@ +v52.0.0 +------- + + +Breaking Changes +^^^^^^^^^^^^^^^^ +* #2537: Remove fallback support for fetch_build_eggs using easy_install. Now pip is required for setup_requires to succeed. +* #2544: Removed 'easy_install' top-level model (runpy entry point) and 'easy_install' console script. +* #2545: Removed support for eggsecutables. + +Changes +^^^^^^^ +* #2459: Tests now run in parallel via pytest-xdist, completing in about half the time. Special thanks to :user:`webknjaz` for hard work implementing test isolation. To run without parallelization, disable the plugin with ``tox -- -p no:xdist``. + + v51.3.3 ------- diff --git a/changelog.d/2459.change.rst b/changelog.d/2459.change.rst deleted file mode 100644 index 3b8d11a9..00000000 --- a/changelog.d/2459.change.rst +++ /dev/null @@ -1 +0,0 @@ -Tests now run in parallel via pytest-xdist, completing in about half the time. Special thanks to :user:`webknjaz` for hard work implementing test isolation. To run without parallelization, disable the plugin with ``tox -- -p no:xdist``. diff --git a/changelog.d/2537.breaking.rst b/changelog.d/2537.breaking.rst deleted file mode 100644 index 184d8e87..00000000 --- a/changelog.d/2537.breaking.rst +++ /dev/null @@ -1 +0,0 @@ -Remove fallback support for fetch_build_eggs using easy_install. Now pip is required for setup_requires to succeed. diff --git a/changelog.d/2544.breaking.rst b/changelog.d/2544.breaking.rst deleted file mode 100644 index 169c41b9..00000000 --- a/changelog.d/2544.breaking.rst +++ /dev/null @@ -1 +0,0 @@ -Removed 'easy_install' top-level model (runpy entry point) and 'easy_install' console script. diff --git a/changelog.d/2545.breaking.rst b/changelog.d/2545.breaking.rst deleted file mode 100644 index 0c69fdf3..00000000 --- a/changelog.d/2545.breaking.rst +++ /dev/null @@ -1 +0,0 @@ -Removed support for eggsecutables. @@ -2,7 +2,7 @@ license_files = LICENSE name = setuptools -version = 51.3.3 +version = 52.0.0 author = Python Packaging Authority author_email = distutils-sig@python.org description = Easily download, build, install, upgrade, and uninstall Python packages |