Skip to content

Commit f77151a

Browse files
Restrict setuptools version to <v65
During the installation of FisherExact, the build is isolated and use the latest version of setuptools to build the package. The latest setuptools release (>65), removed old deprecated msvc modules. It breaks the build of some packages which depend on this. See: pypa/setuptools#3532
1 parent 97279ca commit f77151a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[build-system]
22
requires = [
3-
"setuptools >= 40.6.0",
3+
"setuptools >= 40.6.0, < 65.0.0",
44
"wheel",
55
"numpy == 1.21.6",
66
]

0 commit comments

Comments
 (0)