-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Build featomic wheels against metatensor wheels
Instead of pulling a separate metatensor version from github
- Loading branch information
Showing
6 changed files
with
25 additions
and
18 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,15 @@ | ||
from setuptools import build_meta | ||
|
||
|
||
get_requires_for_build_sdist = build_meta.get_requires_for_build_sdist | ||
prepare_metadata_for_build_wheel = build_meta.prepare_metadata_for_build_wheel | ||
build_wheel = build_meta.build_wheel | ||
build_sdist = build_meta.build_sdist | ||
|
||
|
||
def get_requires_for_build_wheel(config_settings=None): | ||
defaults = build_meta.get_requires_for_build_wheel(config_settings) | ||
return defaults + [ | ||
"cmake", | ||
"metatensor-core >=0.1.11,<0.2.0", | ||
] |
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
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