Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-imageio for openSUSE:Factory 
checked in at 2023-12-17 21:32:09
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-imageio (Old)
 and      /work/SRC/openSUSE:Factory/.python-imageio.new.25432 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-imageio"

Sun Dec 17 21:32:09 2023 rev:16 rq:1133613 version:2.33.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-imageio/python-imageio.changes    
2023-11-27 22:45:27.834456874 +0100
+++ /work/SRC/openSUSE:Factory/.python-imageio.new.25432/python-imageio.changes 
2023-12-17 21:34:39.590674763 +0100
@@ -1,0 +2,7 @@
+Sat Dec 16 18:59:15 UTC 2023 - Dirk Müller <[email protected]>
+
+- update to 2.33.1:
+  * Replace mktemp with mkstemp when caching to disk for legacy
+    plugins
+
+-------------------------------------------------------------------

Old:
----
  imageio-2.33.0.tar.gz

New:
----
  imageio-2.33.1.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python-imageio.spec ++++++
--- /var/tmp/diff_new_pack.5znmB8/_old  2023-12-17 21:34:40.034690896 +0100
+++ /var/tmp/diff_new_pack.5znmB8/_new  2023-12-17 21:34:40.034690896 +0100
@@ -19,7 +19,7 @@
 %bcond_with test_extras
 %{?sle15_python_module_pythons}
 Name:           python-imageio
-Version:        2.33.0
+Version:        2.33.1
 Release:        0
 Summary:        Python library for reading and writing image, video, and 
related formats
 License:        BSD-2-Clause

++++++ imageio-2.33.0.tar.gz -> imageio-2.33.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/imageio-2.33.0/PKG-INFO new/imageio-2.33.1/PKG-INFO
--- old/imageio-2.33.0/PKG-INFO 2023-11-20 03:26:13.583969000 +0100
+++ new/imageio-2.33.1/PKG-INFO 2023-12-11 03:26:42.100135000 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: imageio
-Version: 2.33.0
+Version: 2.33.1
 Summary: Library for reading and writing a wide range of image, video, 
scientific, and volumetric data formats.
 Home-page: https://github.com/imageio/imageio
 Download-URL: http://pypi.python.org/pypi/imageio
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/imageio-2.33.0/imageio/__init__.py 
new/imageio-2.33.1/imageio/__init__.py
--- old/imageio-2.33.0/imageio/__init__.py      2023-11-20 03:26:07.000000000 
+0100
+++ new/imageio-2.33.1/imageio/__init__.py      2023-12-11 03:26:35.000000000 
+0100
@@ -16,7 +16,7 @@
 
 # flake8: noqa
 
-__version__ = "2.33.0"
+__version__ = "2.33.1"
 
 import warnings
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/imageio-2.33.0/imageio/core/request.py 
new/imageio-2.33.1/imageio/core/request.py
--- old/imageio-2.33.0/imageio/core/request.py  2023-11-20 03:26:06.000000000 
+0100
+++ new/imageio-2.33.1/imageio/core/request.py  2023-12-11 03:26:34.000000000 
+0100
@@ -529,7 +529,8 @@
                 ext = self.extension
             else:
                 ext = os.path.splitext(self._filename)[1]
-            self._filename_local = tempfile.mktemp(ext, "imageio_")
+            fd, self._filename_local = tempfile.mkstemp(ext, "imageio_")
+            os.close(fd)
             # Write stuff to it?
             if self.mode.io_mode == IOMode.read:
                 with open(self._filename_local, "wb") as file:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/imageio-2.33.0/imageio/plugins/pillowmulti.py 
new/imageio-2.33.1/imageio/plugins/pillowmulti.py
--- old/imageio-2.33.0/imageio/plugins/pillowmulti.py   2023-11-20 
03:26:06.000000000 +0100
+++ new/imageio-2.33.1/imageio/plugins/pillowmulti.py   2023-12-11 
03:26:34.000000000 +0100
@@ -42,8 +42,8 @@
             if major == 10 and minor >= 1:
                 raise ImportError(
                     f"Pillow v{pillow_version} is not supported by ImageIO's 
legacy "
-                    "pillow plugin when writing GIF. Consider using to the new 
"
-                    "plugin or downgrade to `pillow<10.1.0`."
+                    "pillow plugin when writing GIFs. Consider switching to 
the new "
+                    "plugin or downgrading to `pillow<10.1.0`."
                 )
 
             # Check palettesize
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/imageio-2.33.0/imageio.egg-info/PKG-INFO 
new/imageio-2.33.1/imageio.egg-info/PKG-INFO
--- old/imageio-2.33.0/imageio.egg-info/PKG-INFO        2023-11-20 
03:26:13.000000000 +0100
+++ new/imageio-2.33.1/imageio.egg-info/PKG-INFO        2023-12-11 
03:26:42.000000000 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: imageio
-Version: 2.33.0
+Version: 2.33.1
 Summary: Library for reading and writing a wide range of image, video, 
scientific, and volumetric data formats.
 Home-page: https://github.com/imageio/imageio
 Download-URL: http://pypi.python.org/pypi/imageio

Reply via email to