1
0
python-imagecodecs/always-cythonize.patch
Dirk Mueller 9488f3439b Accepting request 868482 from home:bnavigator:branches:devel:languages:python
- Update to version 2021.1.28
  * Add option to return JPEG XR fixed point pixel types as
    integers
  * Add LJPEG codec via liblj92 (alternative to JPEGSOF3 codec)
  * Change zopfli header location.
- refresh always-cythonize.patch
- drop zopfli-headers.patch fixed upstream
- Add more testing requirements to test backends
- Add skip reporting to pytest to see what is still missing

OBS-URL: https://build.opensuse.org/request/show/868482
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-imagecodecs?expand=0&rev=13
2021-02-02 00:09:38 +00:00

14 lines
464 B
Diff

Index: imagecodecs-2021.1.28/setup.py
===================================================================
--- imagecodecs-2021.1.28.orig/setup.py
+++ imagecodecs-2021.1.28/setup.py
@@ -105,7 +105,7 @@ def ext(**kwargs):
OPTIONS = {
- 'cythonize': sys.version_info >= (3, 10) or 'PyPy' in sys.version,
+ 'cythonize': True,
'include_dirs': ['imagecodecs'],
'library_dirs': [],
'libraries': ['m'] if sys.platform != 'win32' else [],