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: sktime-0.25.0-gfbf-2023a.eb
- Loading branch information
alberta
committed
Jan 23, 2024
1 parent
5030f4c
commit 1f3c72e
Showing
1 changed file
with
36 additions
and
0 deletions.
There are no files selected for viewing
36 changes: 36 additions & 0 deletions
36
easybuild/easyconfigs/s/sktime/sktime-0.25.0-gfbf-2023a.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,36 @@ | ||
easyblock = 'PythonBundle' | ||
|
||
name = 'sktime' | ||
version = '0.25.0' | ||
homepage = 'https://www.sktime.net/en/stable/' | ||
description = """sktime is a library for time series analysis in Python. | ||
It provides a unified interface for multiple time series learning tasks. | ||
Currently, this includes time series classification, regression, clustering, | ||
annotation, and forecasting. It comes with time series algorithms and | ||
scikit-learn compatible tools to build, tune and validate time series models.""" | ||
|
||
toolchain = {'name': 'gfbf', 'version': '2023a'} | ||
|
||
|
||
dependencies = [ | ||
('Python', '3.11.3'), | ||
('SciPy-bundle', '2023.07'), | ||
('scikit-learn', '1.3.1') | ||
] | ||
|
||
|
||
exts_list = [ | ||
('scikit-base', '0.6.2', { | ||
'modulename': 'skbase', | ||
'checksums': ['ac7c1dd9b1006e1e466d8269074f7fb02b7f5143c615f7fdf6a1e0c7565431fe'], | ||
}), | ||
(name, version, { | ||
'checksums': ['b687d44608e5d2fd6b3c631b2608f4cf7bc581e22c1131ac78d59cea7687b589'], | ||
}), | ||
] | ||
|
||
download_dep_fail = True | ||
use_pip = True | ||
sanity_pip_check = True | ||
|
||
moduleclass = 'data' |