Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
easyblock = 'PythonBundle'

name = 'scikit-learn'
version = '0.20.4'
versionsuffix = '-Python-%(pyver)s'

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': 'foss', 'version': '2023a'}

dependencies = [
('Python', '2.7.18'),
('numpy', '1.16.6', versionsuffix),
('SciPy-bundle', '2024.06', versionsuffix),
]

use_pip = True
sanity_pip_check = True

exts_list = [
(name, version, {
'patches': ['scikit-learn-0.20.3_fix-cd_fast.patch'],
'checksums': [
{'scikit-learn-0.20.4.tar.gz': 'dfa8a3f33907614030cdfbc8b6f553dacbecaf09f922244f128af3060a137cfc'},
{'scikit-learn-0.20.3_fix-cd_fast.patch':
'9a98785a99bde000a58048ccbe382ea362aa8cf644171097e8ae755cddddeb75'},
],
'modulename': 'sklearn',
}),
('sklearn', '0.0', {
'checksums': ['e23001573aa194b834122d2b9562459bf5ae494a2d59ca6b8aa22c85a44c0e31'],
}),
]

moduleclass = 'data'
Loading