Skip to content

Commit de12257

Browse files
Merge pull request #84 from ZLI-afk/v1.2
Important bug fix
2 parents c69b55a + 48c99bb commit de12257

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

apex/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import os
2-
__version__ = '1.2.9'
2+
__version__ = '1.2.10'
33
LOCAL_PATH = os.getcwd()
44

55

apex/config.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ def __post_init__(self):
137137
}
138138
if self.machine:
139139
update_dict(self.machine_dict, self.machine)
140-
elif self.context_type in ["LocalContext", "localcontext"
140+
elif self.context_type in ["LocalContext", "localcontext",
141141
"Local", "local"]:
142142
self.machine_dict = {
143143
"batch_type": self.batch_type,
@@ -148,7 +148,7 @@ def __post_init__(self):
148148
}
149149
if self.machine:
150150
update_dict(self.machine_dict, self.machine)
151-
elif self.context_type in ["LazyLocalContext", "lazylocalcontext"
151+
elif self.context_type in ["LazyLocalContext", "lazylocalcontext",
152152
"LazyLocal", "lazylocal"]:
153153
self.machine_dict = {
154154
"batch_type": self.batch_type,

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setuptools.setup(
77
name="apex-flow",
8-
version="1.2.9",
8+
version="1.2.10",
99
author="Zhuoyuan Li, Tongqi Wen",
1010
author_email="zhuoyli@outlook.com",
1111
description="Alloy Properties EXplorer using simulations",

0 commit comments

Comments
 (0)