We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 90bc0e9 + 8e76d31 commit 585a338Copy full SHA for 585a338
test/tests/python-imports/container.py
@@ -24,6 +24,11 @@
24
import lzma
25
assert(lzma.decompress(lzma.compress(b'IT WORKS IT WORKS IT WORKS')) == b'IT WORKS IT WORKS IT WORKS')
26
27
+ if sys.version_info[1] >= 14:
28
+ # https://docs.python.org/3.14/library/compression.zstd.html
29
+ from compression import zstd
30
+ assert(zstd.decompress(zstd.compress(b'IT WORKS IT WORKS IT WORKS')) == b'IT WORKS IT WORKS IT WORKS')
31
+
32
# https://github.com/docker-library/python/pull/954
33
shouldHaveSetuptoolsAndWheel = sys.version_info[0] == 3 and sys.version_info[1] < 12
34
import importlib.util
0 commit comments