Skip to content

Commit ede7f96

Browse files
committed
MNT: Avoid setuptools 61.0.0
1 parent 6a75090 commit ede7f96

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
[build-system]
2-
requires = ["setuptools >= 30.3.0", "wheel"]
2+
requires = ["setuptools >= 30.3.0, != 61.0.0", "wheel"]

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# Give setuptools a hint to complain if it's too old a version
77
# 30.3.0 allows us to put most metadata in setup.cfg
88
# Should match pyproject.toml
9-
SETUP_REQUIRES = ['setuptools >= 30.3.0']
9+
SETUP_REQUIRES = ['setuptools >= 30.3.0, != 61.0.0']
1010
# This enables setuptools to install wheel on-the-fly
1111
SETUP_REQUIRES += ['wheel'] if 'bdist_wheel' in sys.argv else []
1212

tools/ci/env.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
SETUP_REQUIRES="pip setuptools>=30.3.0 wheel"
1+
SETUP_REQUIRES="pip setuptools>=30.3.0,!=61.0.0 wheel"
22

33
# Numpy and scipy upload nightly/weekly/intermittent wheels
44
NIGHTLY_WHEELS="https://pypi.anaconda.org/scipy-wheels-nightly/simple"

0 commit comments

Comments
 (0)