Skip to content

Commit

Permalink
Merge pull request #25 from LLNL/dependabot/pip/docs/source/pyinstall…
Browse files Browse the repository at this point in the history
…er-5.13.1

Bump pyinstaller from 3.6 to 5.13.1 in /docs/source
  • Loading branch information
bryan-garcia authored Dec 13, 2023
2 parents b853fd8 + 21aed73 commit 14273d1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/source/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ mkl-random==1.1.0
mkl-service==2.3.0
mpmath==1.3.0
numpy==1.22.0
PyInstaller==3.6
PyInstaller==5.13.1
pyparsing==2.4.2
python-dateutil==2.8.0
PyYAML==5.4
Expand Down
4 changes: 3 additions & 1 deletion tests/component/test_efit.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,10 @@ def test_load_geqdsk(data_dir):
#
# Check keys and values of loaded SNL eqdsk are consistent
#
explicit_comparisons = ['comment'] # Keys to use "==" operator with
for baseline_k, test_k in zip(sorted(baseline), sorted(session.geqdsk_data)):
assert baseline_k == test_k, "Key mismatch in loaded data."
k = baseline_k
assert np.allclose(baseline[k], session.geqdsk_data[k]), "Numerics mismatch in data."
compare = lambda x, y: x == y if k in explicit_comparisons else np.allclose
assert compare(baseline[k], session.geqdsk_data[k]), "Numerics mismatch in data."

0 comments on commit 14273d1

Please sign in to comment.