Skip to content

Commit a8941e0

Browse files
author
Zoran Simic
committed
Temporarily avoid setuptools 77.0.3
1 parent 6f5f961 commit a8941e0

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,8 @@ jobs:
1919
with:
2020
python-version: '3.10'
2121

22-
# Temporarily avoid 77.0.3, see https://github.com/pypa/setuptools/issues/4902
2322
- run: |
24-
pip install -U pip 'setuptools!=77.0.3' wheel tox
23+
pip install -U pip setuptools wheel tox
2524
git config --global user.name tester
2625
git config --global user.email [email protected]
2726
- run: tox -e py,docs,style,security

HISTORY.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Release notes
33
=============
44

5-
3.7.1 (2025-03-20)
5+
3.7.2 (2025-03-20)
66
------------------
77

88
* Adapted ``CheckCommand`` to setuptools v77.0.3

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[build-system]
2-
requires = ["setuptools"]
2+
requires = ["setuptools!=77.0.3"] # Temporarily avoid 77.0.3, see https://github.com/pypa/setuptools/issues/4902
33
build-backend = "setuptools.build_meta"

0 commit comments

Comments
 (0)