Skip to content

Commit 8f5559c

Browse files
committed
Bump version: 75.3.0 → 75.4.0
1 parent 6cc5f08 commit 8f5559c

9 files changed

+32
-19
lines changed

.bumpversion.cfg

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

NEWS.rst

+30
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,33 @@
1+
v75.4.0
2+
=======
3+
4+
Features
5+
--------
6+
7+
- Added support for the environment variable
8+
``SETUPTOOLS_DANGEROUSLY_SKIP_PYPROJECT_VALIDATION=true``, allowing users to bypass
9+
the validation of ``pyproject.toml``.
10+
This option should be used only as a last resort when resolving dependency
11+
issues, as it may lead to improper functioning.
12+
Users who enable this setting are responsible for ensuring that ``pyproject.toml``
13+
complies with setuptools requirements. (#4611)
14+
- Require Python 3.9 or later. (#4718)
15+
- Remove dependency on ``importlib_resources``
16+
and the vendored copy of the library.
17+
Instead, ``setuptools`` consistently rely on stdlib's ``importlib.resources``
18+
(available on Python 3.9+). (#4718)
19+
- Setuptools' ``bdist_wheel`` implementation no longer produces wheels with
20+
the ``m`` SOABI flag (pymalloc-related).
21+
This flag was removed on Python 3.8+ (see :obj:`sys.abiflags`). (#4718)
22+
- Updated vendored packaging version to 24.2. (#4740)
23+
24+
25+
Bugfixes
26+
--------
27+
28+
- Merge with pypa/distutils@251797602, including fix for dirutil.mkpath handling in pypa/distutils#304.
29+
30+
131
v75.3.0
232
=======
333

newsfragments/+f0b61194.bugfix.rst

-1
This file was deleted.

newsfragments/4611.feature.rst

-7
This file was deleted.

newsfragments/4718.feature.1.rst

-1
This file was deleted.

newsfragments/4718.feature.2.rst

-4
This file was deleted.

newsfragments/4718.feature.3.rst

-3
This file was deleted.

newsfragments/4740.feature.rst

-1
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 = "75.3.0"
8+
version = "75.4.0"
99
authors = [
1010
{ name = "Python Packaging Authority", email = "[email protected]" },
1111
]

0 commit comments

Comments
 (0)