forked from easybuilders/easybuild-easyconfigs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adding easyconfigs: xarray-2024.5.0-iimkl-2023b.eb
- Loading branch information
1 parent
bc2b5ff
commit f8a2d15
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
28 changes: 28 additions & 0 deletions
28
easybuild/easyconfigs/x/xarray/xarray-2024.5.0-iimkl-2023b.eb
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,28 @@ | ||
easyblock = 'PythonBundle' | ||
|
||
name = 'xarray' | ||
version = '2024.5.0' | ||
|
||
homepage = 'https://github.com/pydata/xarray' | ||
description = """xarray (formerly xray) is an open source project and Python package that aims to bring | ||
the labeled data power of pandas to the physical sciences, by providing N-dimensional variants of the | ||
core pandas data structures.""" | ||
|
||
toolchain = {'name': 'iimkl', 'version': '2023b'} | ||
|
||
dependencies = [ | ||
('Python', '3.11.5'), | ||
('SciPy-bundle', '2023.12'), | ||
] | ||
|
||
use_pip = True | ||
sanity_pip_check = True | ||
|
||
exts_list = [ | ||
(name, version, { | ||
'preinstallopts': """sed -i 's/^dynamic = .*version.*/version = "%(version)s"/g' pyproject.toml && """, | ||
'checksums': ['e0eb1cb265f265126795f388ed9591f3c752f2aca491f6c0576711fd15b708f2'], | ||
}), | ||
] | ||
|
||
moduleclass = 'data' |