Skip to content

Commit

Permalink
Merge pull request Pyomo#3298 from alma-walmsley/main
Browse files Browse the repository at this point in the history
Ignore errors on ASL solver version check
  • Loading branch information
mrmundt authored Jul 10, 2024
2 parents b50cfac + c8bf131 commit f5e6f32
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pyomo/solvers/plugins/solvers/ASL.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,8 @@ def _get_version(self):
timeout=5,
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT,
universal_newlines=True,
text=True,
errors='ignore',
)
ver = _extract_version(results.stdout)
if ver is None:
Expand Down

0 comments on commit f5e6f32

Please sign in to comment.