File tree Expand file tree Collapse file tree 3 files changed +8
-1
lines changed
Expand file tree Collapse file tree 3 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -821,7 +821,7 @@ def children(self):
821821
822822 def zip_children (self ):
823823 # deferred for performance (python/importlib_metadata#502)
824- import zipfile
824+ from zipp . compat . overlay import zipfile
825825
826826 zip_path = zipfile .Path (self .root )
827827 names = zip_path .root .namelist ()
Original file line number Diff line number Diff line change @@ -18,6 +18,10 @@ disable_error_code =
1818[mypy-pytest_perf.*]
1919ignore_missing_imports = True
2020
21+ # jaraco/zipp#123
22+ [mypy-zipp.*]
23+ ignore_missing_imports = True
24+
2125# jaraco/jaraco.test#7
2226[mypy-jaraco.test.*]
2327ignore_missing_imports = True
Original file line number Diff line number Diff line change @@ -22,6 +22,9 @@ classifiers = [
2222]
2323requires-python = " >=3.9"
2424license = " Apache-2.0"
25+ dependencies = [
26+ " zipp>=3.20" ,
27+ ]
2528dynamic = [" version" ]
2629
2730[project .urls ]
You can’t perform that action at this time.
0 commit comments