Skip to content

Assorted fixes #657

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion openff/evaluator/backends/dask.py
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@ def start(self):
cores=self._resources_per_worker.number_of_threads,
memory=memory_string,
walltime=self._resources_per_worker.wallclock_time_limit,
job_extra=job_extra,
job_extra_directives=job_extra,
env_extra=env_extra,
extra=extra,
local_directory="dask-worker-space",
Expand Down
3 changes: 1 addition & 2 deletions openff/evaluator/utils/packmol.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
import tempfile
import warnings
from collections import defaultdict
from distutils.spawn import find_executable
from functools import reduce

import numpy as np
Expand Down Expand Up @@ -47,7 +46,7 @@ def _find_packmol():
"""

return (
find_executable("packmol") or shutil.which("packmol") or None
shutil.which("packmol") or None
if "PACKMOL" not in os.environ
else os.environ["PACKMOL"]
)
Expand Down