-
Notifications
You must be signed in to change notification settings - Fork 704
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #21821 from lcniel/20241111110204_new_pr_scikit-le…
…arn152 {data}[gfbf/2024a] scikit-learn v1.5.2
- Loading branch information
Showing
1 changed file
with
39 additions
and
0 deletions.
There are no files selected for viewing
39 changes: 39 additions & 0 deletions
39
easybuild/easyconfigs/s/scikit-learn/scikit-learn-1.5.2-gfbf-2024a.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,39 @@ | ||
easyblock = 'PythonBundle' | ||
|
||
name = 'scikit-learn' | ||
version = '1.5.2' | ||
|
||
homepage = 'https://scikit-learn.org/stable/index.html' | ||
description = """Scikit-learn integrates machine learning algorithms in the tightly-knit scientific Python world, | ||
building upon numpy, scipy, and matplotlib. As a machine-learning module, | ||
it provides versatile tools for data mining and analysis in any field of science and engineering. | ||
It strives to be simple and efficient, accessible to everybody, and reusable in various contexts.""" | ||
|
||
toolchain = {'name': 'gfbf', 'version': '2024a'} | ||
|
||
builddependencies = [ | ||
('Cython', '3.0.10'), | ||
('meson-python', '0.16.0'), | ||
] | ||
|
||
dependencies = [ | ||
('Python', '3.12.3'), | ||
('Python-bundle-PyPI', '2024.06'), | ||
('SciPy-bundle', '2024.05'), | ||
] | ||
|
||
use_pip = True | ||
sanity_pip_check = True | ||
|
||
exts_list = [ | ||
(name, version, { | ||
'modulename': 'sklearn', | ||
'sources': ['scikit_learn-%(version)s.tar.gz'], | ||
'checksums': ['b4237ed7b3fdd0a4882792e68ef2545d5baa50aca3bb45aa7df468138ad8f94d'], | ||
}), | ||
('sklearn', '0.0', { | ||
'checksums': ['e23001573aa194b834122d2b9562459bf5ae494a2d59ca6b8aa22c85a44c0e31'], | ||
}), | ||
] | ||
|
||
moduleclass = 'data' |