Skip to content
This repository was archived by the owner on Apr 26, 2024. It is now read-only.

Commit 53e804f

Browse files
author
David Robertson
committed
DEPS: Add missing dependency on importlib_metadata
Missed in #12088. We got away with it because we were indirectly importing it in other places. Without this, we encounter pain in `poetry export`; and besides, we should be explicit about our direct dependencies.
1 parent 7d57414 commit 53e804f

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

pyproject.toml

+3
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,9 @@ ijson = ">=3.1.4"
167167
matrix-common = "~=1.1.0"
168168
# We need packaging.requirements.Requirement, added in 16.1.
169169
packaging = ">=16.1"
170+
# At the time of writing, we only use functions from the version `importlib.metadata`
171+
# which shipped in Python 3.8. This corresponds to version 1.4 of the backport.
172+
importlib_metadata = { version = ">=1.4", python = "<3.8" }
170173

171174

172175
# Optional Dependencies

0 commit comments

Comments
 (0)