Skip to content

Commit

Permalink
fix: missing dependency on packaging (#1024)
Browse files Browse the repository at this point in the history
This is used, but not declared. So many packages depend on this that
it's being always pulled in for testing, but in a minimal environment
it's missing.

See
pyodide/pyodide#4767 (comment).
  • Loading branch information
henryiii authored Aug 21, 2024
1 parent 939142f commit 501b801
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ classifiers = [
"Operating System :: Unix",
"Operating System :: MacOS",
]
dependencies = ["numpy >=1.21"]
dependencies = ["packaging", "numpy >=1.21"]

[project.urls]
repository = "http://github.com/scikit-hep/iminuit"
Expand Down

0 comments on commit 501b801

Please sign in to comment.