Skip to content

Commit

Permalink
Bump version to 0.8.0rc0 (#90)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcosfelt authored Feb 19, 2021
1 parent be54b50 commit 70ba9a2
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 8 deletions.
5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[tool.poetry]
name = "summit"
version = "0.6.0"
version = "0.8.0rc0"
description = "Tools for optimizing chemical processes"
authors = ["Kobi Felton <kobi.c.f@gmail.com>", "Jan Rittig"]
license = "MIT"
readme = 'README.md'
repository = "https://github.com/sustainable-processes/summit"
homepage = "https://github.com/sustainable-processes/summit"
keywords = ["machine-learning", "chemistry", "reactions", "optimization", "neural-networks", "process optimization", "bayesian-optimization", "nelder-mead", "snobfit", "gryffin", "TSEMO"]
keywords = ["machine-learning", "chemistry", "bayesian-reaction-optimization", "reaction-optimization", "neural-networks", "process optimization", "bayesian-optimization", "nelder-mead", "snobfit", "gryffin", "TSEMO"]

[tool.poetry.dependencies]
# Core dependencies
Expand All @@ -32,7 +32,6 @@ pymoo = "^0.4.1"
SQSnobFit = "^0.4.3"

# Dependencies for MTBO

botorch = "*"
# Temporary fix https://github.com/pytorch/botorch/issues/668
gpytorch = "1.3.0"
Expand Down
2 changes: 1 addition & 1 deletion summit/benchmarks/MIT/MIT_kin_case1.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,4 +167,4 @@ def _integrand(self, t, C, cat_index, T):

def to_dict(self, **kwargs):
experiment_params = dict(noise_level=self.noise_level)
return super().to_dict(**experiment_params)
return super().to_dict(**experiment_params)
2 changes: 1 addition & 1 deletion summit/benchmarks/MIT/MIT_kin_case2.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,4 +166,4 @@ def _integrand(self, t, C, cat_index, T):

def to_dict(self, **kwargs):
experiment_params = dict(noise_level=self.noise_level)
return super().to_dict(**experiment_params)
return super().to_dict(**experiment_params)
2 changes: 1 addition & 1 deletion summit/benchmarks/MIT/MIT_kin_case3.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,4 +166,4 @@ def _integrand(self, t, C, cat_index, T):

def to_dict(self, **kwargs):
experiment_params = dict(noise_level=self.noise_level)
return super().to_dict(**experiment_params)
return super().to_dict(**experiment_params)
2 changes: 1 addition & 1 deletion summit/benchmarks/MIT/MIT_kin_case4.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,4 +167,4 @@ def _integrand(self, t, C, cat_index, T):

def to_dict(self, **kwargs):
experiment_params = dict(noise_level=self.noise_level)
return super().to_dict(**experiment_params)
return super().to_dict(**experiment_params)
2 changes: 1 addition & 1 deletion summit/benchmarks/MIT/MIT_kin_case5.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,4 +171,4 @@ def _integrand(self, t, C, cat_index, T):

def to_dict(self, **kwargs):
experiment_params = dict(noise_level=self.noise_level)
return super().to_dict(**experiment_params)
return super().to_dict(**experiment_params)

0 comments on commit 70ba9a2

Please sign in to comment.