Skip to content

Commit

Permalink
Add libdlf to Report() (#209)
Browse files Browse the repository at this point in the history
  • Loading branch information
prisae committed Mar 3, 2024
1 parent f900179 commit b77839b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion empymod/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -2032,7 +2032,7 @@ def __init__(self, add_pckg=None, ncol=3, text_width=80, sort=False):
"""Initiate a scooby.Report instance."""

# Mandatory packages.
core = ['numpy', 'scipy', 'numba', 'empymod']
core = ['numpy', 'scipy', 'numba', 'empymod', 'libdlf']

# Optional packages.
optional = ['IPython', 'matplotlib']
Expand Down
2 changes: 1 addition & 1 deletion tests/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -1192,7 +1192,7 @@ def test_report(capsys):
# Reporting is now done by the external package scooby.
# We just ensure the shown packages do not change (core and optional).
out1 = scooby.Report(
core=['numpy', 'scipy', 'numba', 'empymod'],
core=['numpy', 'scipy', 'numba', 'empymod', 'libdlf'],
optional=['IPython', 'matplotlib'],
ncol=3)
out2 = utils.Report()
Expand Down

0 comments on commit b77839b

Please sign in to comment.