We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d5a8c2 commit 114044fCopy full SHA for 114044f
1 file changed
Lib/zipfile/__init__.py
@@ -2093,6 +2093,8 @@ def _write_end_record(self):
2093
min_version = max(BZIP2_VERSION, min_version)
2094
elif zinfo.compress_type == ZIP_LZMA:
2095
min_version = max(LZMA_VERSION, min_version)
2096
+ elif zinfo.compress_type == ZIP_ZSTANDARD:
2097
+ min_version = max(ZSTANDARD_VERSION, min_version)
2098
2099
extract_version = max(min_version, zinfo.extract_version)
2100
create_version = max(min_version, zinfo.create_version)
0 commit comments