Skip to content

Commit

Permalink
adding easyconfigs: bayesian-optimization-2.0.3-foss-2024a.eb
Browse files Browse the repository at this point in the history
  • Loading branch information
PetrKralCZ committed Jan 14, 2025
1 parent b8c18cd commit dba028f
Showing 1 changed file with 34 additions and 0 deletions.
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'

0 comments on commit dba028f

Please sign in to comment.