Skip to content

Commit

Permalink
fix dependency list
Browse files Browse the repository at this point in the history
  • Loading branch information
wtbarnes committed Oct 13, 2023
1 parent 53cf25a commit a404149
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion sunpy/util/tests/test_sysinfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
def test_find_dependencies():
missing, installed = find_dependencies()
assert missing == {}
assert sorted(list(installed.keys())) == sorted(["astropy", "numpy", "packaging", "parfive"])
assert sorted(list(installed.keys())) == sorted(["astropy", "numpy", "packaging"])

missing, installed = find_dependencies(package="sunpy", extras=["required", "all"])
assert missing == {}
Expand Down Expand Up @@ -48,6 +48,7 @@ def test_missing_dependencies_by_extra():
'asdf',
'required',
'dask',
'data',
'database',
'dev',
'docs',
Expand Down

0 comments on commit a404149

Please sign in to comment.