Skip to content

Commit ffbff64

Browse files
committed
✨ update compress_static_files.py dependencies
1 parent bee66de commit ffbff64

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/compress_static_files.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ def get_missing_dependencies(self) -> Iterable[str]:
9797
import zopfli # noqa: F401
9898
except ModuleNotFoundError as exc:
9999
assert exc.name == "zopfli"
100-
yield "zopflipy==1.10"
100+
yield "zopflipy==1.11"
101101

102102

103103
class ZstdFileCompressor(FileCompressor):
@@ -127,7 +127,7 @@ def get_missing_dependencies(self) -> Iterable[str]:
127127
import zstd # noqa: F401
128128
except ModuleNotFoundError as exc:
129129
assert exc.name == "zstd"
130-
yield "zstd==1.5.5.1"
130+
yield "zstd==1.5.6.2"
131131

132132

133133
def compress_dir(

0 commit comments

Comments
 (0)