Skip to content

Commit 65641d4

Browse files
authored
Remove high constraint for importlib-metadata (#1764)
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.
1 parent 58ee845 commit 65641d4

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

CONTRIBUTORS

+1
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ Oliver Bestwalter
8787
Pablo Galindo
8888
Paul Moore
8989
Paweł Adamczak
90+
Peter Kolbus
9091
Philip Thiem
9192
Pierre-Jean Campigotto
9293
Pierre-Luc Tessier Gagné

docs/changelog/1763.feature.rst

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Relax importlib requirement to allow 3.0.0 or any newer version - by
2+
:user:`pkolbus`

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ install_requires =
4747
toml>=0.9.4
4848
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
4949
colorama>=0.4.1 ;platform_system=="Windows"
50-
importlib-metadata>=0.12,<3;python_version<"3.8"
50+
importlib-metadata>=0.12;python_version<"3.8"
5151
python_requires = >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*
5252

5353
[options.entry_points]

0 commit comments

Comments
 (0)