Skip to content

Commit

Permalink
MNT: Avoid setuptools 61.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
effigies committed Mar 25, 2022
1 parent 6a75090 commit ede7f96
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
@@ -1,2 +1,2 @@
[build-system]
requires = ["setuptools >= 30.3.0", "wheel"]
requires = ["setuptools >= 30.3.0, != 61.0.0", "wheel"]
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -6,7 +6,7 @@
# Give setuptools a hint to complain if it's too old a version
# 30.3.0 allows us to put most metadata in setup.cfg
# Should match pyproject.toml
SETUP_REQUIRES = ['setuptools >= 30.3.0']
SETUP_REQUIRES = ['setuptools >= 30.3.0, != 61.0.0']
# This enables setuptools to install wheel on-the-fly
SETUP_REQUIRES += ['wheel'] if 'bdist_wheel' in sys.argv else []

Expand Down
2 changes: 1 addition & 1 deletion tools/ci/env.sh
@@ -1,4 +1,4 @@
SETUP_REQUIRES="pip setuptools>=30.3.0 wheel"
SETUP_REQUIRES="pip setuptools>=30.3.0,!=61.0.0 wheel"

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

0 comments on commit ede7f96

Please sign in to comment.