Skip to content

Commit

Permalink
fix(IMPORTANT): fix unsorted task_list induced bug using fpop for VAS…
Browse files Browse the repository at this point in the history
…P and ABACUS calculation
  • Loading branch information
ZLI-afk committed Nov 6, 2023
1 parent fde089e commit be33a18
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 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.1.0'
__version__ = '1.1.1'
LOCAL_PATH = os.getcwd()


Expand Down
1 change: 1 addition & 0 deletions apex/op/property_ops.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,7 @@ def execute(
task_list.sort()
os.chdir(input_work_path)
task_list_str = glob.glob(path_to_prop + '/' + 'task.*')
task_list_str.sort()

all_jobs = task_list
njobs = len(all_jobs)
Expand Down
2 changes: 1 addition & 1 deletion apex/superop/SimplePropertySteps.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ def _build(
):
# Step for property make
make = Step(
name="prop-make",
name="Props-make",
template=PythonOPTemplate(
make_op,
image=make_image,
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.1.0",
version="1.1.1",
author="Zhuoyuan Li, Tongqi Wen",
author_email="zhuoyli@outlook.com",
description="Alloy Properties EXplorer using simulations",
Expand Down

0 comments on commit be33a18

Please sign in to comment.