Skip to content

Commit 3238443

Browse files
authored
Exclude only failing setuptools version.
1 parent 3dd2562 commit 3238443

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ environment:
3535

3636
install:
3737
- SET PATH=C:\\Python%PYTHON%;c:\\Python%PYTHON%\\scripts;%PATH%
38-
- python -m pip.__main__ install -U pip wheel "setuptools<72.0.0"
38+
- python -m pip.__main__ install -U pip wheel "setuptools!=72.0.0"
3939
- pip install -r requirements.txt
4040
- git submodule update --init --recursive
4141

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[build-system]
2-
requires = ["Cython>=3.0.9", "setuptools<72.0.0", "wheel"]
2+
requires = ["Cython>=3.0.9", "setuptools!=72.0.0", "wheel"]
33

44
[tool.cibuildwheel]
55
build-verbosity = 2

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
Cython>=3.0.9
2-
setuptools<72.0.0
2+
setuptools!=72.0.0

0 commit comments

Comments
 (0)