Skip to content

Commit

Permalink
Restrict setuptools version to <v65
Browse files Browse the repository at this point in the history
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
  • Loading branch information
talk4-kmastalier authored Aug 16, 2022
1 parent 97279ca commit f77151a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[build-system]
requires = [
"setuptools >= 40.6.0",
"setuptools >= 40.6.0, < 65.0.0",
"wheel",
"numpy == 1.21.6",
]
Expand Down

0 comments on commit f77151a

Please sign in to comment.