Skip to content

Commit

Permalink
Entos: PR comments
Browse files Browse the repository at this point in the history
  • Loading branch information
sjrl committed Sep 24, 2019
1 parent fc30e4f commit a818bf1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion qcengine/programs/entos.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def compute(self, input_data: 'ResultInput', config: 'JobConfig') -> 'Result':
self.found(raise_error=True)

# Check entos version
if parse_version(self.get_version()) < parse_version("0.5"):
if parse_version(self.get_version()) < parse_version("0.6"):
raise TypeError("entos version '{}' not supported".format(self.get_version()))

# Setup the job
Expand Down Expand Up @@ -175,6 +175,7 @@ def build_input(self, input_model: 'ResultInput', config: 'JobConfig',
**energy_extra_options,
**name_results
},
**print_results,
}
# Create the input dictionary for a gradient call
elif input_model.driver == 'gradient':
Expand All @@ -187,6 +188,7 @@ def build_input(self, input_model: 'ResultInput', config: 'JobConfig',
},
**name_results
},
**print_results,
}
# TODO Add support for hessians
# elif input_model.driver == 'hessian':
Expand Down
2 changes: 1 addition & 1 deletion qcengine/testing.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def get_job(self):
"terachem": which("terachem", return_bool=True),
"molpro": is_program_new_enough("molpro", "2018.1"),
"mopac": is_program_new_enough("mopac", "2016"),
"entos": is_program_new_enough("entos", "0.5"),
"entos": is_program_new_enough("entos", "0.6"),
"cfour": which('xcfour', return_bool=True),
"gamess": which('rungms', return_bool=True),
"nwchem": which('nwchem', return_bool=True),
Expand Down

0 comments on commit a818bf1

Please sign in to comment.