* Pass 7659 tests. * Fix some codecs for use with Zarr 3, zarr_format=2 (#123). * Fix lz4h5 codec when block size is less than compressed size (#126). * Fix pglz_compress is not thread-safe. * Set __module__ attribute on public objects. * Drop support for Python 3.9, deprecate Python 3.10. - Add patch no-length-assertion-aborts.patch: * Do not call h5lookup methods that cause failed assertions. OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-imagecodecs?expand=0&rev=42
12 lines
565 B
Diff
12 lines
565 B
Diff
--- imagecodecs-2024.1.1.orig/setup.py
|
|
+++ imagecodecs-2024.1.1/setup.py
|
|
@@ -246,7 +246,7 @@ def customize_build_default(EXTENSIONS,
|
|
del EXTENSIONS['sperr'] # sperr not commonly available
|
|
del EXTENSIONS['zlibng'] # zlib-ng library not commonly available
|
|
|
|
- if 'arch' not in platform.platform():
|
|
+ if True:
|
|
del EXTENSIONS['jpegls'] # CharLS 2.1 library not commonly available
|
|
del EXTENSIONS['jpegxl'] # jpeg-xl library not commonly available
|
|
del EXTENSIONS['brunsli'] # Brunsli library not commonly available
|