-
-
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 1477d27
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 = [ | ||
# oldest supported Numpy for this platform is 1.17 but the oldest supported by Gensim | ||
# is 1.18.5, remove the line when they increase oldest supported Numpy for this platform | ||
"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