Skip to content

Commit

Permalink
Lower minimum required version of importlib.metadata
Browse files Browse the repository at this point in the history
I had problems installing a package that required `daidepp` because
`daidepp` requires too recent a version of `importlib.metadata`. Commit
d31a7d5[^1] added the requirement for `importlib.metadata` with a
minimum version of `6.0.0`. The commit was made on 2023-02-08, and
`6.0.0` was the latest version available at the time.[^2] However,
according to the README,[^3] `1.4.0` was the version used by the Python
3.8 stdlib, so no newer version is needed. I have loosened the
requirement accordingly.

[^1]: d31a7d5
[^2]: https://pypi.org/project/importlib-metadata/#history
[^3]: https://pypi.org/project/importlib-metadata/#description
  • Loading branch information
aphedges committed Sep 3, 2024
1 parent d55a209 commit 4900dbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ packages = find:
python_requires = >=3.7
install_requires =
parsimonious==0.9.0
importlib-metadata>=6.0.0 ; python_version < "3.8"
importlib-metadata>=1.4.0 ; python_version < "3.8"

[options.packages.find]
where = src
Expand Down

0 comments on commit 4900dbb

Please sign in to comment.