Skip to content

Commit

Permalink
Merge pull request #85 from deepmodeling/devel-1.2.0
Browse files Browse the repository at this point in the history
Devel 1.2.0
  • Loading branch information
kevinwenminion authored Oct 25, 2024
2 parents 57e1936 + de12257 commit e7e410b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion apex/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import os
__version__ = '1.2.9'
__version__ = '1.2.10'
LOCAL_PATH = os.getcwd()


Expand Down
4 changes: 2 additions & 2 deletions apex/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ def __post_init__(self):
}
if self.machine:
update_dict(self.machine_dict, self.machine)
elif self.context_type in ["LocalContext", "localcontext"
elif self.context_type in ["LocalContext", "localcontext",
"Local", "local"]:
self.machine_dict = {
"batch_type": self.batch_type,
Expand All @@ -148,7 +148,7 @@ def __post_init__(self):
}
if self.machine:
update_dict(self.machine_dict, self.machine)
elif self.context_type in ["LazyLocalContext", "lazylocalcontext"
elif self.context_type in ["LazyLocalContext", "lazylocalcontext",
"LazyLocal", "lazylocal"]:
self.machine_dict = {
"batch_type": self.batch_type,
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="apex-flow",
version="1.2.9",
version="1.2.10",
author="Zhuoyuan Li, Tongqi Wen",
author_email="zhuoyli@outlook.com",
description="Alloy Properties EXplorer using simulations",
Expand Down

0 comments on commit e7e410b

Please sign in to comment.