-
-
Notifications
You must be signed in to change notification settings - Fork 4.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use oldest-supported-numpy for build
- Loading branch information
1 parent
ccffa84
commit 4a05b6b
Showing
3 changed files
with
12 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
[build-system] | ||
requires = [ | ||
"Cython==0.29.32", | ||
# this platform use Numpy 1.17 by default but the oldest supported by Gensim is 1.18.5 | ||
"numpy==1.18.5; python_version=='3.8' and platform_machine not in 'arm64|aarch64'", | ||
"oldest-supported-numpy; python_version>'3.8' or platform_machine in 'arm64|aarch64'", | ||
"scipy", | ||
"setuptools", | ||
"wheel", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters