Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python-filelock for openSUSE:Factory
checked in at 2023-06-21 22:37:18
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-filelock (Old)
and /work/SRC/openSUSE:Factory/.python-filelock.new.15902 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-filelock"
Wed Jun 21 22:37:18 2023 rev:14 rq:1094132 version:3.12.2
Changes:
--------
--- /work/SRC/openSUSE:Factory/python-filelock/python-filelock.changes
2023-06-12 15:25:19.706653374 +0200
+++
/work/SRC/openSUSE:Factory/.python-filelock.new.15902/python-filelock.changes
2023-06-21 22:37:32.121532065 +0200
@@ -1,0 +2,6 @@
+Tue Jun 20 16:59:32 UTC 2023 - Dirk Müller <[email protected]>
+
+- update to 3.12.2:
+ * Restore 'if TYPE_CHECKING' syntax for FileLock definition
+
+-------------------------------------------------------------------
Old:
----
filelock-3.12.1.tar.gz
New:
----
filelock-3.12.2.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-filelock.spec ++++++
--- /var/tmp/diff_new_pack.AgYGKD/_old 2023-06-21 22:37:33.093537914 +0200
+++ /var/tmp/diff_new_pack.AgYGKD/_new 2023-06-21 22:37:33.097537939 +0200
@@ -19,7 +19,7 @@
%{?sle15_python_module_pythons}
Name: python-filelock
-Version: 3.12.1
+Version: 3.12.2
Release: 0
Summary: Platform Independent File Lock in Python
License: Unlicense
++++++ filelock-3.12.1.tar.gz -> filelock-3.12.2.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/filelock-3.12.1/PKG-INFO new/filelock-3.12.2/PKG-INFO
--- old/filelock-3.12.1/PKG-INFO 2020-02-02 01:00:00.000000000 +0100
+++ new/filelock-3.12.2/PKG-INFO 2020-02-02 01:00:00.000000000 +0100
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: filelock
-Version: 3.12.1
+Version: 3.12.2
Summary: A platform independent file lock.
Project-URL: Documentation, https://py-filelock.readthedocs.io
Project-URL: Homepage, https://github.com/tox-dev/py-filelock
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/filelock-3.12.1/src/filelock/__init__.py
new/filelock-3.12.2/src/filelock/__init__.py
--- old/filelock-3.12.1/src/filelock/__init__.py 2020-02-02
01:00:00.000000000 +0100
+++ new/filelock-3.12.2/src/filelock/__init__.py 2020-02-02
01:00:00.000000000 +0100
@@ -32,9 +32,11 @@
if warnings is not None:
warnings.warn("only soft file lock is available", stacklevel=2)
-
-#: Alias for the lock, which should be used for the current platform.
-FileLock: type[BaseFileLock] = SoftFileLock if TYPE_CHECKING else _FileLock #
type: ignore[assignment]
+if TYPE_CHECKING: # noqa: SIM108
+ FileLock = SoftFileLock
+else:
+ #: Alias for the lock, which should be used for the current platform.
+ FileLock = _FileLock
__all__ = [
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/filelock-3.12.1/src/filelock/version.py
new/filelock-3.12.2/src/filelock/version.py
--- old/filelock-3.12.1/src/filelock/version.py 2020-02-02 01:00:00.000000000
+0100
+++ new/filelock-3.12.2/src/filelock/version.py 2020-02-02 01:00:00.000000000
+0100
@@ -1,4 +1,4 @@
# file generated by setuptools_scm
# don't change, don't track in version control
-__version__ = version = '3.12.1'
-__version_tuple__ = version_tuple = (3, 12, 1)
+__version__ = version = '3.12.2'
+__version_tuple__ = version_tuple = (3, 12, 2)