File tree Expand file tree Collapse file tree 3 files changed +10
-3
lines changed Expand file tree Collapse file tree 3 files changed +10
-3
lines changed Original file line number Diff line number Diff line change
1
+ v5.1.4
2
+ ======
3
+
4
+ * #225: Require
5
+ `zipp 3.1.0 <https://zipp.readthedocs.io/en/latest/history.html#v3-1-0 >`_
6
+ or later on Python prior to 3.10 to incorporate those fixes.
7
+
1
8
v5.0.5
2
9
======
3
10
Original file line number Diff line number Diff line change 5
5
import pathlib
6
6
from contextlib import suppress
7
7
8
- try :
8
+ if sys . version_info >= ( 3 , 10 ) :
9
9
from zipfile import Path as ZipPath # type: ignore
10
- except ImportError :
10
+ else :
11
11
from zipp import Path as ZipPath # type: ignore
12
12
13
13
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ packages = find_namespace:
22
22
include_package_data = true
23
23
python_requires = >=3.6
24
24
install_requires =
25
- zipp >= 0.4 ; python_version < '3.8 '
25
+ zipp >= 3.1.0 ; python_version < '3.10 '
26
26
setup_requires = setuptools_scm[toml] >= 3.4.1
27
27
28
28
[options.packages.find]
You can’t perform that action at this time.
0 commit comments