Skip to content

Commit

Permalink
fix issues with duplicated dependencies of scikit learn versions
Browse files Browse the repository at this point in the history
  • Loading branch information
VictorGoitea committed Jun 13, 2024
1 parent 3336a28 commit 78d134c
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 50 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
easyblock = 'PythonBundle'

name = 'scikit-learn'
version = '1.0.1'

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': '2021b'}

dependencies = [
('Python', '3.9.6'),
('SciPy-bundle', '2021.10')
]

use_pip = True
sanity_pip_check = True

exts_list = [
(name, version, {
'checksums': ['ac2ca9dbb754d61cfe1c83ba8483498ef951d29b93ec09d6f002847f210a99da'],
'modulename': 'sklearn',
}),
('sklearn', '0.0', { # also install the meta-package, as other packages check for this
'checksums': ['e23001573aa194b834122d2b9562459bf5ae494a2d59ca6b8aa22c85a44c0e31'],
})
]

moduleclass = 'data'

0 comments on commit 78d134c

Please sign in to comment.