Skip to content

Commit 4147b09

Browse files
committed
Bump version: 72.2.0 → 73.0.0
1 parent 2ad8c10 commit 4147b09

14 files changed

+36
-21
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 72.2.0
2+
current_version = 73.0.0
33
commit = True
44
tag = True
55

NEWS.rst

+34
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,37 @@
1+
v73.0.0
2+
=======
3+
4+
Features
5+
--------
6+
7+
- Mark abstract base classes and methods with `abc.ABC` and `abc.abstractmethod` -- by :user:`Avasam` (#4503)
8+
- 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)
9+
10+
11+
Bugfixes
12+
--------
13+
14+
- 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)
15+
- Raises an exception when ``py_limited_api`` is used in a build with
16+
``Py_GIL_DISABLED``. This is currently not supported (python/cpython#111506). (#4420)
17+
- Synced with pypa/distutils@30b7331 including fix for modified check on empty sources (pypa/distutils#284).
18+
19+
20+
Deprecations and Removals
21+
-------------------------
22+
23+
- ``setuptools`` is replacing the usages of :pypi:`ordered_set` with simple
24+
instances of ``dict[Hashable, None]``. This is done to remove the extra
25+
dependency and it is possible because since Python 3.7, ``dict`` maintain
26+
insertion order. (#4574)
27+
28+
29+
Misc
30+
----
31+
32+
- #4534, #4546, #4554, #4559, #4565
33+
34+
135
v72.2.0
236
=======
337

newsfragments/+61911d95.bugfix.rst

-1
This file was deleted.

newsfragments/4383.bugfix.rst

-1
This file was deleted.

newsfragments/4420.bugfix.rst

-2
This file was deleted.

newsfragments/4503.feature.rst

-1
This file was deleted.

newsfragments/4505.feature.rst

-1
This file was deleted.

newsfragments/4534.misc.rst

-1
This file was deleted.

newsfragments/4546.misc.rst

-2
This file was deleted.

newsfragments/4554.misc.rst

-1
This file was deleted.

newsfragments/4559.misc.rst

-2
This file was deleted.

newsfragments/4565.misc.rst

-3
This file was deleted.

newsfragments/4574.removal.rst

-4
This file was deleted.

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ backend-path = ["."]
55

66
[project]
77
name = "setuptools"
8-
version = "72.2.0"
8+
version = "73.0.0"
99
authors = [
1010
{ name = "Python Packaging Authority", email = "[email protected]" },
1111
]

0 commit comments

Comments
 (0)