Compare commits
No commits in common. "rawhide" and "f39" have entirely different histories.
5 changed files with 81 additions and 370 deletions
5
.gitignore
vendored
5
.gitignore
vendored
|
|
@ -1,6 +1 @@
|
|||
/imagecodecs-2022.9.26.tar.gz
|
||||
/imagecodecs-2023.1.23.tar.gz
|
||||
/imagecodecs-2024.9.22.tar.gz
|
||||
/imagecodecs-2024.12.30.tar.gz
|
||||
/imagecodecs-2025.3.30.tar.gz
|
||||
/imagecodecs-2025.8.2.tar.gz
|
||||
|
|
|
|||
50
changelog
50
changelog
|
|
@ -1,50 +0,0 @@
|
|||
* Wed Aug 06 2025 Orion Poplawski <orion@nwra.com> - 2025.3.30-1
|
||||
- Update to 2025.3.30
|
||||
|
||||
* Wed Aug 06 2025 Orion Poplawski <orion@nwra.com> - 2024.12.30-1
|
||||
- Update to 2024.12.30
|
||||
|
||||
* Fri Jul 25 2025 Fedora Release Engineering <releng@fedoraproject.org> - 2024.9.22-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
||||
|
||||
* Fri Jun 06 2025 Python Maint <python-maint@redhat.com> - 2024.9.22-2
|
||||
- Rebuilt for Python 3.14
|
||||
|
||||
* Wed Jan 22 2025 Sandro <devel@penguinpee.nl> - 2024.9.22-1
|
||||
- Update to 2024.9.22
|
||||
- Add support for NumPy 2.x
|
||||
- Close RHBZ#2341164
|
||||
|
||||
* Sat Jan 18 2025 Fedora Release Engineering <releng@fedoraproject.org> - 2023.1.23-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||
|
||||
* Tue Sep 10 2024 Zbigniew Jedrzejewski-Szmek <zbyszek@in.waw.pl> - 2023.1.23-4
|
||||
- Rebuilt for blosc2-2.15.1-1
|
||||
|
||||
* Fri Jul 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 2023.1.23-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||
|
||||
* Mon Jun 17 2024 Python Maint <python-maint@redhat.com> - 2023.1.23-2
|
||||
- Rebuilt for Python 3.13
|
||||
|
||||
* Sun Apr 21 2024 Orion Poplawski <orion@nwra.com> - 2023.1.23-1
|
||||
- Update to 2023.1.23
|
||||
- Add more test dependencies
|
||||
|
||||
* Sun Apr 21 2024 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 2022.9.26-6
|
||||
- Rebuilt for blosc2 2.14.4
|
||||
|
||||
* Wed Jan 31 2024 František Zatloukal <fzatlouk@redhat.com> - 2022.9.26-5
|
||||
- Rebuilt for libavif 1.0.3
|
||||
|
||||
* Fri Jan 26 2024 Fedora Release Engineering <releng@fedoraproject.org> - 2022.9.26-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Mon Jan 22 2024 Fedora Release Engineering <releng@fedoraproject.org> - 2022.9.26-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Fri Jul 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 2022.9.26-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||
|
||||
* Fri Jun 02 2023 Orion Poplawski <orion@nwra.com> - 2022.9.26-1
|
||||
- Initial Fedora package
|
||||
|
|
@ -1,5 +1,3 @@
|
|||
import platform
|
||||
|
||||
def customize_build(EXTENSIONS, OPTIONS):
|
||||
"""Customize build for Fedora"""
|
||||
|
||||
|
|
@ -7,13 +5,12 @@ def customize_build(EXTENSIONS, OPTIONS):
|
|||
del EXTENSIONS['bitshuffle'] # Uses 3rdparty source
|
||||
del EXTENSIONS['brunsli'] # not available on Fedora
|
||||
del EXTENSIONS['jetraw'] # commercial
|
||||
del EXTENSIONS['jpeg12'] # jpeg12 requires custom build
|
||||
del EXTENSIONS['jpegls'] # Fedora's charls is too old at the moment
|
||||
del EXTENSIONS['jpegsof3'] # Uses 3rdparty source
|
||||
del EXTENSIONS['jpegxl'] # requires static linking?
|
||||
del EXTENSIONS['ljpeg'] # Uses 3rdparty source
|
||||
del EXTENSIONS['lz4f'] # requires static linking
|
||||
del EXTENSIONS['lzf'] # Uses 3rdparty source
|
||||
del EXTENSIONS['lzham'] # Uses 3rdparty source
|
||||
del EXTENSIONS['mozjpeg'] # Win32 only
|
||||
del EXTENSIONS['pglz'] # Uses 3rdparty source
|
||||
del EXTENSIONS['qoi'] # Uses 3rdparty source
|
||||
|
|
@ -28,18 +25,3 @@ def customize_build(EXTENSIONS, OPTIONS):
|
|||
del EXTENSIONS['jpeg2k'] # Uses 3rdparty source to use private function - https://github.com/cgohlke/imagecodecs/issues/77
|
||||
EXTENSIONS['jpegxr']['include_dirs'].append('/usr/include/jxrlib')
|
||||
EXTENSIONS['zopfli']['include_dirs'].append('/usr/include/zopfli')
|
||||
|
||||
if platform.machine() == 's390x':
|
||||
del EXTENSIONS['lzfse'] # Not supported on big-endian
|
||||
# New or changed in 2024.9.22
|
||||
del EXTENSIONS['bcn'] # not available in Fedora
|
||||
del EXTENSIONS['h5checksum'] # uses 3rdparty source
|
||||
EXTENSIONS['jpeg8']['sources'] = [] # requires libjpeg-turbo v3
|
||||
del EXTENSIONS['jpegxs'] # not available on Fedora
|
||||
del EXTENSIONS['lzo'] # Uses 3rdparty source
|
||||
del EXTENSIONS['pcodec'] # Uses 3rdparty source
|
||||
del EXTENSIONS['quantize'] # Uses 3rdparty source
|
||||
del EXTENSIONS['rcomp'] # Uses 3rdparty source
|
||||
del EXTENSIONS['sperr'] # Uses 3rdparty source
|
||||
del EXTENSIONS['sz3'] # Uses 3rdparty source
|
||||
del EXTENSIONS['ultrahdr'] # Uses 3rdparty source
|
||||
|
|
|
|||
|
|
@ -1,8 +1,10 @@
|
|||
%global srcname imagecodecs
|
||||
|
||||
Name: python-imagecodecs
|
||||
Version: 2025.8.2
|
||||
Release: %autorelease
|
||||
# Imagecodecs 2023.3.16 requires libjpeg-turbo 3, which is currently in beta:
|
||||
# Imagecodecs 2023.1.23-2022.12.22 requires libtiff 4.5.0
|
||||
Version: 2022.9.26
|
||||
Release: 2%{?dist}
|
||||
Summary: Image transformation, compression, and decompression codecs
|
||||
|
||||
License: BSD-3-Clause
|
||||
|
|
@ -11,8 +13,6 @@ Source: %{pypi_source}
|
|||
# Build configuration
|
||||
Source1: imagecodecs_distributor_setup.py
|
||||
|
||||
ExcludeArch: %{ix86}
|
||||
|
||||
BuildRequires: python3-devel
|
||||
BuildRequires: python3-Cython
|
||||
BuildRequires: gcc-c++
|
||||
|
|
@ -21,23 +21,19 @@ BuildRequires: blosc2-devel
|
|||
BuildRequires: bzip2-devel
|
||||
BuildRequires: cfitsio-devel
|
||||
BuildRequires: CharLS-devel
|
||||
BuildRequires: brotli-devel
|
||||
BuildRequires: giflib-devel
|
||||
BuildRequires: jxrlib-devel
|
||||
BuildRequires: lcms2-devel
|
||||
BuildRequires: libaec-devel
|
||||
BuildRequires: libavif-devel >= 1.3.0
|
||||
BuildRequires: libavif-devel
|
||||
BuildRequires: libdeflate-devel
|
||||
BuildRequires: libheif-devel
|
||||
BuildRequires: libjpeg-turbo-devel >= 3
|
||||
BuildRequires: libjpeg-turbo-devel
|
||||
BuildRequires: liblerc-devel
|
||||
BuildRequires: libpng-devel
|
||||
BuildRequires: libtiff-devel >= 4.5.0
|
||||
BuildRequires: libtiff-devel
|
||||
BuildRequires: libzstd-devel
|
||||
BuildRequires: lz4-devel
|
||||
%ifnarch s390x
|
||||
BuildRequires: lzfse-devel
|
||||
%endif
|
||||
# Uses 3rdparty source to use private function - https://github.com/cgohlke/imagecodecs/issues/77
|
||||
#BuildRequires: openjpeg2-devel
|
||||
BuildRequires: snappy-devel
|
||||
|
|
@ -46,19 +42,7 @@ BuildRequires: zfp-devel
|
|||
BuildRequires: zlib-ng-devel
|
||||
BuildRequires: zopfli-devel
|
||||
# Tests
|
||||
BuildRequires: %{py3_dist pytest}
|
||||
BuildRequires: %{py3_dist blosc}
|
||||
BuildRequires: %{py3_dist blosc2}
|
||||
BuildRequires: %{py3_dist brotli}
|
||||
BuildRequires: %{py3_dist lz4}
|
||||
BuildRequires: %{py3_dist numcodecs}
|
||||
BuildRequires: %{py3_dist python-snappy}
|
||||
BuildRequires: %{py3_dist tifffile}
|
||||
BuildRequires: %{py3_dist zarr}
|
||||
BuildRequires: %{py3_dist zstd}
|
||||
%ifnarch s390x
|
||||
BuildRequires: %{py3_dist pyliblzfse}
|
||||
%endif
|
||||
BuildRequires: pytest
|
||||
|
||||
%global _description %{expand:
|
||||
Imagecodecs is a Python library that provides block-oriented, in-memory
|
||||
|
|
@ -94,15 +78,11 @@ rm -f $(grep -rl '/\* Generated by Cython')
|
|||
rm -r 3rdparty
|
||||
|
||||
%generate_buildrequires
|
||||
# We need to import the local imagecodecs_distributor_setup.py file
|
||||
export PYTHONPATH=.
|
||||
%pyproject_buildrequires
|
||||
|
||||
|
||||
%build
|
||||
export CPPFLAGS=-I%{_includedir}/cfitsio
|
||||
# We need to import the local imagecodecs_distributor_setup.py file
|
||||
export PYTHONPATH=.
|
||||
%pyproject_wheel
|
||||
|
||||
|
||||
|
|
@ -112,274 +92,74 @@ export PYTHONPATH=.
|
|||
|
||||
|
||||
%check
|
||||
TEST_OPTS=(
|
||||
# TODO - tests/test_imagecodecs.py::test_cms_identity_transforms segfaults (various cases)
|
||||
--deselect "tests/test_imagecodecs.py::test_cms_identity_transforms"
|
||||
# TODO AssertionError
|
||||
--deselect "tests/test_imagecodecs.py::test_cms"
|
||||
# TODO - investigate blosc2 test failues - value differences
|
||||
--deselect "tests/test_imagecodecs.py::test_compressors[blosc2-encode-0-new]"
|
||||
--deselect "tests/test_imagecodecs.py::test_compressors[blosc2-encode-0-bytearray]"
|
||||
--deselect "tests/test_imagecodecs.py::test_compressors[blosc2-encode-0-out]"
|
||||
--deselect "tests/test_imagecodecs.py::test_compressors[blosc2-encode-0-size]"
|
||||
--deselect "tests/test_imagecodecs.py::test_compressors[blosc2-encode-2-new]"
|
||||
--deselect "tests/test_imagecodecs.py::test_compressors[blosc2-encode-2-bytearray]"
|
||||
--deselect "tests/test_imagecodecs.py::test_compressors[blosc2-encode-2-out]"
|
||||
--deselect "tests/test_imagecodecs.py::test_compressors[blosc2-encode-2-size]"
|
||||
--deselect "tests/test_imagecodecs.py::test_compressors[blosc2-encode-3069-new]"
|
||||
--deselect "tests/test_imagecodecs.py::test_compressors[blosc2-encode-3069-bytearray]"
|
||||
--deselect "tests/test_imagecodecs.py::test_compressors[blosc2-encode-3069-out]"
|
||||
--deselect "tests/test_imagecodecs.py::test_compressors[blosc2-encode-3069-size]"
|
||||
# spng_encode appears to not be available with openjpeg2 disabled, but the test still tries to run
|
||||
--deselect tests/test_imagecodecs.py::test_spng_encode
|
||||
# Other deselected tests seem to be related to unsupported compression types
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint8-gray-new-new-None]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint8-gray-new-new-5]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint8-gray-new-new--1]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint8-gray-new-out-None]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint8-gray-new-out-5]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint8-gray-new-out--1]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint8-gray-new-bytearray-None]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint8-gray-new-bytearray-5]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint8-gray-new-bytearray--1]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint8-gray-out-new-None]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint8-gray-out-new-5]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint8-gray-out-new--1]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint8-gray-out-out-None]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint8-gray-out-out-5]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint8-gray-out-out--1]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint8-gray-out-bytearray-None]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint8-gray-out-bytearray-5]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint8-gray-out-bytearray--1]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint8-gray-bytearray-new-None]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint8-gray-bytearray-new-5]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint8-gray-bytearray-new--1]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint8-gray-bytearray-out-None]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint8-gray-bytearray-out-5]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint8-gray-bytearray-out--1]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint8-gray-bytearray-bytearray-None]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint8-gray-bytearray-bytearray-5]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint8-gray-bytearray-bytearray--1]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint8-graya-new-new-None]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint8-graya-new-new-5]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint8-graya-new-new--1]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint8-graya-new-out-None]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint8-graya-new-out-5]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint8-graya-new-out--1]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint8-graya-new-bytearray-None]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint8-graya-new-bytearray-5]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint8-graya-new-bytearray--1]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint8-graya-out-new-None]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint8-graya-out-new-5]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint8-graya-out-new--1]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint8-graya-out-out-None]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint8-graya-out-out-5]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint8-graya-out-out--1]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint8-graya-out-bytearray-None]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint8-graya-out-bytearray-5]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint8-graya-out-bytearray--1]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint8-graya-bytearray-new-None]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint8-graya-bytearray-new-5]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint8-graya-bytearray-new--1]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint8-graya-bytearray-out-None]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint8-graya-bytearray-out-5]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint8-graya-bytearray-out--1]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint8-graya-bytearray-bytearray-None]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint8-graya-bytearray-bytearray-5]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint8-graya-bytearray-bytearray--1]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint16-gray-new-new-None]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint16-gray-new-new-5]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint16-gray-new-new--1]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint16-gray-new-out-None]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint16-gray-new-out-5]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint16-gray-new-out--1]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint16-gray-new-bytearray-None]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint16-gray-new-bytearray-5]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint16-gray-new-bytearray--1]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint16-gray-out-new-None]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint16-gray-out-new-5]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint16-gray-out-new--1]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint16-gray-out-out-None]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint16-gray-out-out-5]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint16-gray-out-out--1]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint16-gray-out-bytearray-None]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint16-gray-out-bytearray-5]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint16-gray-out-bytearray--1]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint16-gray-bytearray-new-None]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint16-gray-bytearray-new-5]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint16-gray-bytearray-new--1]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint16-gray-bytearray-out-None]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint16-gray-bytearray-out-5]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint16-gray-bytearray-out--1]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint16-gray-bytearray-bytearray-None]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint16-gray-bytearray-bytearray-5]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint16-gray-bytearray-bytearray--1]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint16-graya-new-new-None]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint16-graya-new-new-5]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint16-graya-new-new--1]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint16-graya-new-out-None]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint16-graya-new-out-5]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint16-graya-new-out--1]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint16-graya-new-bytearray-None]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint16-graya-new-bytearray-5]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint16-graya-new-bytearray--1]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint16-graya-out-new-None]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint16-graya-out-new-5]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint16-graya-out-new--1]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint16-graya-out-out-None]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint16-graya-out-out-5]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint16-graya-out-out--1]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint16-graya-out-bytearray-None]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint16-graya-out-bytearray-5]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint16-graya-out-bytearray--1]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint16-graya-bytearray-new-None]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint16-graya-bytearray-new-5]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint16-graya-bytearray-new--1]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint16-graya-bytearray-out-None]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint16-graya-bytearray-out-5]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint16-graya-bytearray-out--1]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint16-graya-bytearray-bytearray-None]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint16-graya-bytearray-bytearray-5]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[avif-uint16-graya-bytearray-bytearray--1]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgb-new-new-None]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgb-new-new-5]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgb-new-new--1]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgb-new-out-None]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgb-new-out-5]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgb-new-out--1]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgb-new-bytearray-None]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgb-new-bytearray-5]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgb-new-bytearray--1]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgb-out-new-None]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgb-out-new-5]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgb-out-new--1]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgb-out-out-None]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgb-out-out-5]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgb-out-out--1]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgb-out-bytearray-None]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgb-out-bytearray-5]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgb-out-bytearray--1]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgb-bytearray-new-None]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgb-bytearray-new-5]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgb-bytearray-new--1]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgb-bytearray-out-None]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgb-bytearray-out-5]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgb-bytearray-out--1]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgb-bytearray-bytearray-None]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgb-bytearray-bytearray-5]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgb-bytearray-bytearray--1]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgba-new-new-None]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgba-new-new-5]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgba-new-new--1]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgba-new-out-None]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgba-new-out-5]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgba-new-out--1]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgba-new-bytearray-None]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgba-new-bytearray-5]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgba-new-bytearray--1]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgba-out-new-None]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgba-out-new-5]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgba-out-new--1]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgba-out-out-None]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgba-out-out-5]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgba-out-out--1]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgba-out-bytearray-None]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgba-out-bytearray-5]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgba-out-bytearray--1]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgba-bytearray-new-None]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgba-bytearray-new-5]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgba-bytearray-new--1]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgba-bytearray-out-None]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgba-bytearray-out-5]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgba-bytearray-out--1]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgba-bytearray-bytearray-None]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgba-bytearray-bytearray-5]"
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgba-bytearray-bytearray--1]"
|
||||
--deselect "tests/test_imagecodecs.py::test_tiff_files[gray.lerc.u1-False]"
|
||||
--deselect "tests/test_imagecodecs.py::test_tiff_files[gray.lerc.u1-True]"
|
||||
--deselect "tests/test_imagecodecs.py::test_tiff_files[rgb.tiled.lerc.u1-False]"
|
||||
--deselect "tests/test_imagecodecs.py::test_tiff_files[rgb.tiled.lerc.u1-True]"
|
||||
--deselect "tests/test_imagecodecs.py::test_numcodecs[heif-gray]"
|
||||
--deselect "tests/test_imagecodecs.py::test_numcodecs[heif-rgb]"
|
||||
--deselect "tests/test_imagecodecs.py::test_numcodecs[heif-stack]"
|
||||
--deselect "tests/test_imagecodecs.py::test_tiff_files[rgb.u1-False]"
|
||||
--deselect "tests/test_imagecodecs.py::test_tiff_files[gray.i2-False]"
|
||||
--deselect "tests/test_imagecodecs.py::test_tiff_files[gray.one.f8-False]"
|
||||
--deselect "tests/test_imagecodecs.py::test_tiff_files[rgba.separate.tiled.u1-False]"
|
||||
--deselect "tests/test_imagecodecs.py::test_tiff_files[gray.u1-False]"
|
||||
--deselect "tests/test_imagecodecs.py::test_tiff_files[gray.f8-False]"
|
||||
--deselect "tests/test_imagecodecs.py::test_tiff_files[rgb.separate.u1-False]"
|
||||
--deselect "tests/test_imagecodecs.py::test_tiff_files[gray.tiled.u1-False]"
|
||||
--deselect "tests/test_imagecodecs.py::test_tiff_files[gray.u2-False]"
|
||||
--deselect "tests/test_imagecodecs.py::test_tiff_files[gray.f4-False]"
|
||||
--deselect "tests/test_imagecodecs.py::test_tiff_files[gray.i1-False]"
|
||||
--deselect "tests/test_imagecodecs.py::test_tiff_files[gray.u4-False]"
|
||||
--deselect "tests/test_imagecodecs.py::test_tiff_files[gray.c8-False]"
|
||||
--deselect "tests/test_imagecodecs.py::test_tiff_files[rgb.separate.tiled.u1-False]"
|
||||
--deselect "tests/test_imagecodecs.py::test_tiff_files[gray.separate.u1-False]"
|
||||
--deselect "tests/test_imagecodecs.py::test_tiff_files[rgba.u1-False]"
|
||||
--deselect "tests/test_imagecodecs.py::test_tiff_files[gray.f2-False]"
|
||||
--deselect "tests/test_imagecodecs.py::test_tiff_files[gray.tiled.u2-False]"
|
||||
--deselect "tests/test_imagecodecs.py::test_tiff_files[gray.one.f4-False]"
|
||||
--deselect "tests/test_imagecodecs.py::test_tiff_files[gray.series.u1-False]"
|
||||
--deselect "tests/test_imagecodecs.py::test_tiff_files[rgba.tiled.u1-False]"
|
||||
--deselect "tests/test_imagecodecs.py::test_tiff_files[gray.i4-False]"
|
||||
--deselect "tests/test_imagecodecs.py::test_tiff_files[rgba.separate.u1-False]"
|
||||
--deselect "tests/test_imagecodecs.py::test_tiff_files[rgb.tiled.u1-False]"
|
||||
--deselect "tests/test_imagecodecs.py::test_tiff_files[rgb.predict.u1-False]"
|
||||
--deselect "tests/test_imagecodecs.py::test_tiff_files[gray.contig.u1-False]"
|
||||
--deselect "tests/test_imagecodecs.py::test_tiff_files[gray.one.f2-False]"
|
||||
--deselect "tests/test_imagecodecs.py::test_tiff_files[gray.bigendian.u2-False]"
|
||||
--deselect "tests/test_imagecodecs.py::test_tiff_files[gray.bigtiff.u1-False]"
|
||||
--deselect "tests/test_imagecodecs.py::test_tiff_files[gray.stack.u1-False]"
|
||||
--deselect "tests/test_imagecodecs.py::test_tiff_files[gray.c16-False]"
|
||||
--deselect "tests/test_imagecodecs.py::test_tiff_files[gray.i8-False]"
|
||||
--deselect "tests/test_imagecodecs.py::test_tiff_files[gray.u8-False]"
|
||||
--deselect "tests/test_imagecodecs.py::test_tiff_files[gray.tiled.f4-False]"
|
||||
--deselect "tests/test_imagecodecs.py::test_tiff_index[0]"
|
||||
--deselect "tests/test_imagecodecs.py::test_tiff_index[3]"
|
||||
--deselect "tests/test_imagecodecs.py::test_tiff_index[None]"
|
||||
--deselect "tests/test_imagecodecs.py::test_tiff_index[list]"
|
||||
--deselect "tests/test_imagecodecs.py::test_tiff_index[slice]"
|
||||
--deselect "tests/test_imagecodecs.py::test_tiff_asrgb"
|
||||
--deselect "tests/test_imagecodecs.py::test_tifffile[deflate-False-u1-<]"
|
||||
--deselect "tests/test_imagecodecs.py::test_tifffile[deflate-False-u1->]"
|
||||
--deselect "tests/test_imagecodecs.py::test_tifffile[deflate-False-u2-<]"
|
||||
--deselect "tests/test_imagecodecs.py::test_tifffile[deflate-False-u2->]"
|
||||
--deselect "tests/test_imagecodecs.py::test_tifffile[deflate-False-f2-<]"
|
||||
--deselect "tests/test_imagecodecs.py::test_tifffile[deflate-False-f2->]"
|
||||
--deselect "tests/test_imagecodecs.py::test_tifffile[deflate-False-f4-<]"
|
||||
--deselect "tests/test_imagecodecs.py::test_tifffile[deflate-False-f4->]"
|
||||
--deselect "tests/test_imagecodecs.py::test_tifffile[deflate-True-u1-<]"
|
||||
--deselect "tests/test_imagecodecs.py::test_tifffile[deflate-True-u1->]"
|
||||
--deselect "tests/test_imagecodecs.py::test_tifffile[deflate-True-u2-<]"
|
||||
--deselect "tests/test_imagecodecs.py::test_tifffile[deflate-True-u2->]"
|
||||
--deselect "tests/test_imagecodecs.py::test_tifffile[deflate-True-f2-<]"
|
||||
--deselect "tests/test_imagecodecs.py::test_tifffile[deflate-True-f2->]"
|
||||
--deselect "tests/test_imagecodecs.py::test_tifffile[deflate-True-f4-<]"
|
||||
--deselect "tests/test_imagecodecs.py::test_tifffile[deflate-True-f4->]"
|
||||
--deselect "tests/test_imagecodecs.py::test_tifffile[lzma-False-u1-<]"
|
||||
--deselect "tests/test_imagecodecs.py::test_tifffile[lzma-False-u1->]"
|
||||
--deselect "tests/test_imagecodecs.py::test_tifffile[lzma-False-u2-<]"
|
||||
--deselect "tests/test_imagecodecs.py::test_tifffile[lzma-False-u2->]"
|
||||
--deselect "tests/test_imagecodecs.py::test_tifffile[lzma-False-f2-<]"
|
||||
--deselect "tests/test_imagecodecs.py::test_tifffile[lzma-False-f2->]"
|
||||
--deselect "tests/test_imagecodecs.py::test_tifffile[lzma-False-f4-<]"
|
||||
--deselect "tests/test_imagecodecs.py::test_tifffile[lzma-False-f4->]"
|
||||
--deselect "tests/test_imagecodecs.py::test_tifffile[lzma-True-u1-<]"
|
||||
--deselect "tests/test_imagecodecs.py::test_tifffile[lzma-True-u1->]"
|
||||
--deselect "tests/test_imagecodecs.py::test_tifffile[lzma-True-u2-<]"
|
||||
--deselect "tests/test_imagecodecs.py::test_tifffile[lzma-True-u2->]"
|
||||
--deselect "tests/test_imagecodecs.py::test_tifffile[lzma-True-f2-<]"
|
||||
--deselect "tests/test_imagecodecs.py::test_tifffile[lzma-True-f2->]"
|
||||
--deselect "tests/test_imagecodecs.py::test_tifffile[lzma-True-f4-<]"
|
||||
--deselect "tests/test_imagecodecs.py::test_tifffile[lzma-True-f4->]"
|
||||
)
|
||||
|
||||
# tifffile is too old at this point to run the tifffile tests
|
||||
# spng_encode appears to not be available with openjpeg2 disabled, but the test still tries to run
|
||||
# Other deselected tests seem to be related to unsupported compression types
|
||||
# A number of tests fail on s390x, ignore that for now
|
||||
%pytest -v "${TEST_OPTS[@]}" \
|
||||
%pytest -v --deselect tests/test_imagecodecs.py::test_tifffile \
|
||||
--deselect tests/test_imagecodecs.py::test_spng_encode \
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgb-new-new-None]" \
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgb-new-new-5]" \
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgb-new-new--1]" \
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgb-new-out-None]" \
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgb-new-out-5]" \
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgb-new-out--1]" \
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgb-new-bytearray-None]" \
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgb-new-bytearray-5]" \
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgb-new-bytearray--1]" \
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgb-out-new-None]" \
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgb-out-new-5]" \
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgb-out-new--1]" \
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgb-out-out-None]" \
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgb-out-out-5]" \
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgb-out-out--1]" \
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgb-out-bytearray-None]" \
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgb-out-bytearray-5]" \
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgb-out-bytearray--1]" \
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgb-bytearray-new-None]" \
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgb-bytearray-new-5]" \
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgb-bytearray-new--1]" \
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgb-bytearray-out-None]" \
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgb-bytearray-out-5]" \
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgb-bytearray-out--1]" \
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgb-bytearray-bytearray-None]" \
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgb-bytearray-bytearray-5]" \
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgb-bytearray-bytearray--1]" \
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgba-new-new-None]" \
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgba-new-new-5]" \
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgba-new-new--1]" \
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgba-new-out-None]" \
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgba-new-out-5]" \
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgba-new-out--1]" \
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgba-new-bytearray-None]" \
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgba-new-bytearray-5]" \
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgba-new-bytearray--1]" \
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgba-out-new-None]" \
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgba-out-new-5]" \
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgba-out-new--1]" \
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgba-out-out-None]" \
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgba-out-out-5]" \
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgba-out-out--1]" \
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgba-out-bytearray-None]" \
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgba-out-bytearray-5]" \
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgba-out-bytearray--1]" \
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgba-bytearray-new-None]" \
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgba-bytearray-new-5]" \
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgba-bytearray-new--1]" \
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgba-bytearray-out-None]" \
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgba-bytearray-out-5]" \
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgba-bytearray-out--1]" \
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgba-bytearray-bytearray-None]" \
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgba-bytearray-bytearray-5]" \
|
||||
--deselect "tests/test_imagecodecs.py::test_image_roundtrips[heif-uint8-rgba-bytearray-bytearray--1]" \
|
||||
--deselect "tests/test_imagecodecs.py::test_tiff_files[gray.lerc.u1-False]" \
|
||||
--deselect "tests/test_imagecodecs.py::test_tiff_files[gray.lerc.u1-True]" \
|
||||
--deselect "tests/test_imagecodecs.py::test_tiff_files[rgb.tiled.lerc.u1-False]" \
|
||||
--deselect "tests/test_imagecodecs.py::test_tiff_files[rgb.tiled.lerc.u1-True]" \
|
||||
--deselect "tests/test_imagecodecs.py::test_numcodecs[heif-gray]" \
|
||||
--deselect "tests/test_imagecodecs.py::test_numcodecs[heif-rgb]" \
|
||||
%ifarch s390x
|
||||
|| :
|
||||
|| exit 0
|
||||
%endif
|
||||
|
||||
%files -n python3-imagecodecs -f %{pyproject_files}
|
||||
|
|
@ -389,4 +169,8 @@ TEST_OPTS=(
|
|||
|
||||
|
||||
%changelog
|
||||
%autochangelog
|
||||
* Fri Jul 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 2022.9.26-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||
|
||||
* Fri Jun 02 2023 Orion Poplawski <orion@nwra.com> - 2022.9.26-1
|
||||
- Initial Fedora package
|
||||
|
|
|
|||
2
sources
2
sources
|
|
@ -1 +1 @@
|
|||
SHA512 (imagecodecs-2025.8.2.tar.gz) = d3daee7ca1d1954541195a5fd4475d1b37ab747ed1b86131ec94013623179182aff09a09a05c6c5989f3e07e089d6e14c9e9084750a21aed4f163441a42b37b4
|
||||
SHA512 (imagecodecs-2022.9.26.tar.gz) = 3f1fd8f475e19ec12b52797c58afd49581be495acd59380cd145ed3d60719b55f4cfffaf0a5564595de058b9a3cfb4ff2ec43ed507d0a1cb6c90d7eb7cc9ea48
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue