Skip to content

Commit

Permalink
Bump version: 72.2.0 → 73.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Aug 19, 2024
1 parent 2ad8c10 commit 4147b09
Show file tree
Hide file tree
Showing 14 changed files with 36 additions and 21 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 72.2.0
current_version = 73.0.0
commit = True
tag = True

Expand Down
34 changes: 34 additions & 0 deletions NEWS.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,37 @@
v73.0.0
=======

Features
--------

- Mark abstract base classes and methods with `abc.ABC` and `abc.abstractmethod` -- by :user:`Avasam` (#4503)
- Changed the order of type checks in ``setuptools.command.easy_install.CommandSpec.from_param`` to support any `collections.abc.Iterable` of `str` param -- by :user:`Avasam` (#4505)


Bugfixes
--------

- Prevent an error in ``bdist_wheel`` if ``compression`` is set to a `str` (even if valid) after finalizing options but before running the command. -- by :user:`Avasam` (#4383)
- Raises an exception when ``py_limited_api`` is used in a build with
``Py_GIL_DISABLED``. This is currently not supported (python/cpython#111506). (#4420)
- Synced with pypa/distutils@30b7331 including fix for modified check on empty sources (pypa/distutils#284).


Deprecations and Removals
-------------------------

- ``setuptools`` is replacing the usages of :pypi:`ordered_set` with simple
instances of ``dict[Hashable, None]``. This is done to remove the extra
dependency and it is possible because since Python 3.7, ``dict`` maintain
insertion order. (#4574)


Misc
----

- #4534, #4546, #4554, #4559, #4565


v72.2.0
=======

Expand Down
1 change: 0 additions & 1 deletion newsfragments/+61911d95.bugfix.rst

This file was deleted.

1 change: 0 additions & 1 deletion newsfragments/4383.bugfix.rst

This file was deleted.

2 changes: 0 additions & 2 deletions newsfragments/4420.bugfix.rst

This file was deleted.

1 change: 0 additions & 1 deletion newsfragments/4503.feature.rst

This file was deleted.

1 change: 0 additions & 1 deletion newsfragments/4505.feature.rst

This file was deleted.

1 change: 0 additions & 1 deletion newsfragments/4534.misc.rst

This file was deleted.

2 changes: 0 additions & 2 deletions newsfragments/4546.misc.rst

This file was deleted.

1 change: 0 additions & 1 deletion newsfragments/4554.misc.rst

This file was deleted.

2 changes: 0 additions & 2 deletions newsfragments/4559.misc.rst

This file was deleted.

3 changes: 0 additions & 3 deletions newsfragments/4565.misc.rst

This file was deleted.

4 changes: 0 additions & 4 deletions newsfragments/4574.removal.rst

This file was deleted.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ backend-path = ["."]

[project]
name = "setuptools"
version = "72.2.0"
version = "73.0.0"
authors = [
{ name = "Python Packaging Authority", email = "distutils-sig@python.org" },
]
Expand Down

0 comments on commit 4147b09

Please sign in to comment.