-
Notifications
You must be signed in to change notification settings - Fork 714
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix issues with duplicated dependencies of scikit learn versions
- Loading branch information
1 parent
3336a28
commit 78d134c
Showing
2 changed files
with
33 additions
and
50 deletions.
There are no files selected for viewing
50 changes: 0 additions & 50 deletions
50
easybuild/easyconfigs/c/CIRIquant/CIRIquant-1.1.2-20221201-foss-2021b-Python-2.7.18.eb
This file was deleted.
Oops, something went wrong.
33 changes: 33 additions & 0 deletions
33
easybuild/easyconfigs/s/scikit-learn/scikit-learn-1.0.1-foss-2021b.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,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' | ||
|