Skip to content

Commit

Permalink
Remove high constraint for importlib-metadata (#1764)
Browse files Browse the repository at this point in the history
Since importlib-metadata is a backport from CPython, new major versions
are much more likely to be to adjust supported Python versions, and not
change the API. Remove the upper bound on the version constraint.

Closes #1763.
  • Loading branch information
pkolbus authored Jan 3, 2021
1 parent 58ee845 commit 65641d4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions CONTRIBUTORS
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ Oliver Bestwalter
Pablo Galindo
Paul Moore
Paweł Adamczak
Peter Kolbus
Philip Thiem
Pierre-Jean Campigotto
Pierre-Luc Tessier Gagné
Expand Down
2 changes: 2 additions & 0 deletions docs/changelog/1763.feature.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Relax importlib requirement to allow 3.0.0 or any newer version - by
:user:`pkolbus`
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ install_requires =
toml>=0.9.4
virtualenv!=20.0.0,!=20.0.1,!=20.0.2,!=20.0.3,!=20.0.4,!=20.0.5,!=20.0.6,!=20.0.7,>=16.0.0
colorama>=0.4.1 ;platform_system=="Windows"
importlib-metadata>=0.12,<3;python_version<"3.8"
importlib-metadata>=0.12;python_version<"3.8"
python_requires = >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*

[options.entry_points]
Expand Down

0 comments on commit 65641d4

Please sign in to comment.