Skip to content

Commit

Permalink
fix experiment crash bug
Browse files Browse the repository at this point in the history
  • Loading branch information
octopuscabbage committed Sep 22, 2020
1 parent 294b7f6 commit ea69047
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def read(fname):

setup(
name="smallab",
version="1.7.2",
version="1.7.3",
url='https://github.com/octopuscabbage/smallab',
packages=find_packages(),
install_requires=required,
Expand Down
2 changes: 1 addition & 1 deletion smallab/runner/runner_methods.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@


def save_run(name, experiment, specification, result, force_pickle):
os.makedirs(get_save_file_directory(name, specification))
os.makedirs(get_save_file_directory(name, specification),exist_ok=True)
output_dictionary = {"specification": specification, "result": result}
json_serialize_was_successful = False
# Try json serialization
Expand Down

0 comments on commit ea69047

Please sign in to comment.