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.
Merge pull request easybuilders#21729 from WilleBell/20241023154703_n…
…ew_pr_Dask-ML202444 {ai}[foss/2023a] Dask-ML v2024.4.4
- Loading branch information
Showing
1 changed file
with
50 additions
and
0 deletions.
There are no files selected for viewing
50 changes: 50 additions & 0 deletions
50
easybuild/easyconfigs/d/Dask-ML/Dask-ML-2024.4.4-foss-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,50 @@ | ||
easyblock = 'PythonBundle' | ||
|
||
name = 'Dask-ML' | ||
version = '2024.4.4' | ||
|
||
homepage = 'http://ml.dask.org/' | ||
description = """ | ||
Dask-ML provides scalable machine learning in Python using Dask alongside popular machine | ||
learning libraries like Scikit-Learn, XGBoost, and others. | ||
""" | ||
|
||
toolchain = {'name': 'foss', 'version': '2023a'} | ||
|
||
builddependencies = [('hatchling', '1.18.0')] | ||
|
||
dependencies = [ | ||
('Python', '3.11.3'), | ||
('scikit-learn', '1.3.1'), | ||
('dask', '2023.9.2'), | ||
('numba', '0.58.1'), | ||
('SciPy-bundle', '2023.07'), | ||
] | ||
|
||
use_pip = True | ||
sanity_pip_check = True | ||
|
||
exts_list = [ | ||
('sparse', '0.15.4', { | ||
# replace use of 'version_file' (which requires setuptools-scm >= 8.0) with 'write_to' | ||
'preinstallopts': "sed -i 's/^version_file/write_to/' pyproject.toml && ", | ||
'checksums': ['d4b1c57d24ff0f64f2fd5b5a95b49b7fb84ed207a26d7d58ce2764dcc5c72b84'], | ||
}), | ||
('dask-glm', '0.3.2', { | ||
'checksums': ['c947a566866698a01d79978ae73233cb5e838ad5ead6085143582c5e930b9a4a'], | ||
}), | ||
('distributed', '2023.9.2', { | ||
'checksums': ['b76b43be6a297c6cc6dc4eac7f5a05a8c6834aaf025ed37395d1d830448d540e'], | ||
}), | ||
('multipledispatch', '1.0.0', { | ||
'checksums': ['5c839915465c68206c3e9c473357908216c28383b425361e5d144594bf85a7e0'], | ||
}), | ||
('packaging', '24.1', { | ||
'checksums': ['026ed72c8ed3fcce5bf8950572258698927fd1dbda10a5e981cdf0ac37f4f002'], | ||
}), | ||
('dask_ml', version, { | ||
'checksums': ['7956910a49e1e31944280fdb311adf245da11ef410d67deb7a05c67c7d0c4498'], | ||
}), | ||
] | ||
|
||
moduleclass = 'ai' |