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.
adding easyconfigs: bayesian-optimization-2.0.3-foss-2024a.eb
- Loading branch information
1 parent
b8c18cd
commit dba028f
Showing
1 changed file
with
34 additions
and
0 deletions.
There are no files selected for viewing
34 changes: 34 additions & 0 deletions
34
easybuild/easyconfigs/b/bayesian-optimization/bayesian-optimization-2.0.3-foss-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,34 @@ | ||
easyblock = 'PythonBundle' | ||
|
||
name = 'bayesian-optimization' | ||
version = '2.0.3' | ||
|
||
homepage = 'https://bayesian-optimization.github.io/BayesianOptimization/index.html' | ||
description = "Pure Python implementation of bayesian global optimization with gaussian processes." | ||
|
||
toolchain = {'name': 'foss', 'version': '2024a'} | ||
|
||
dependencies = [ | ||
('Python', '3.12.3'), | ||
('scikit-learn', '1.5.2'), | ||
('SciPy-bundle', '2024.05'), | ||
] | ||
|
||
use_pip = True | ||
sanity_pip_check = True | ||
|
||
exts_list = [ | ||
('colorama', '0.4.6', { | ||
'source_tmpl': SOURCE_WHL, | ||
'checksums': ['4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6'], | ||
}), | ||
('bayesian_optimization', version, { | ||
'source_tmpl': SOURCE_PY3_WHL, | ||
'modulename': 'bayes_opt', | ||
'checksums': ['73d08237c46a1787c17333aeaae3e41c5fab8e58a68d979645b70e72ba22b63d'], | ||
}), | ||
] | ||
|
||
sanity_check_commands = ["python -c 'from bayes_opt import BayesianOptimization'"] | ||
|
||
moduleclass = 'math' |