Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python-expiringdict for
openSUSE:Factory checked in at 2022-10-12 18:25:52
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-expiringdict (Old)
and /work/SRC/openSUSE:Factory/.python-expiringdict.new.2275 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-expiringdict"
Wed Oct 12 18:25:52 2022 rev:4 rq:1010148 version:1.2.2
Changes:
--------
--- /work/SRC/openSUSE:Factory/python-expiringdict/python-expiringdict.changes
2022-01-17 22:34:46.966273009 +0100
+++
/work/SRC/openSUSE:Factory/.python-expiringdict.new.2275/python-expiringdict.changes
2022-10-12 18:27:37.002076225 +0200
@@ -1,0 +2,6 @@
+Wed Oct 12 03:07:25 UTC 2022 - Yogalakshmi Arunachalam <[email protected]>
+
+- Update to version 1.2.2
+ * Fix import error for Python 3.6+.
+
+-------------------------------------------------------------------
Old:
----
expiringdict-1.2.1.tar.gz
New:
----
expiringdict-1.2.2.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-expiringdict.spec ++++++
--- /var/tmp/diff_new_pack.CcSiY3/_old 2022-10-12 18:27:37.426077158 +0200
+++ /var/tmp/diff_new_pack.CcSiY3/_new 2022-10-12 18:27:37.430077167 +0200
@@ -20,7 +20,7 @@
%{?!python_module:%define python_module() python3-%{**}}
%define skip_python2 1
Name: python-expiringdict
-Version: 1.2.1
+Version: 1.2.2
Release: 0
Summary: Dictionary with auto-expiring values for caching purposes
License: Apache-2.0
++++++ expiringdict-1.2.1.tar.gz -> expiringdict-1.2.2.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/expiringdict-1.2.1/CHANGELOG.rst
new/expiringdict-1.2.2/CHANGELOG.rst
--- old/expiringdict-1.2.1/CHANGELOG.rst 1970-01-01 01:00:00.000000000
+0100
+++ new/expiringdict-1.2.2/CHANGELOG.rst 2022-06-20 14:11:57.000000000
+0200
@@ -0,0 +1,9 @@
+=========
+ChangeLog
+=========
+
+\
+
+v1.2.2 (2022-06-20)
+===================
+* Fix import error for Python 3.6+.
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/expiringdict-1.2.1/README.rst
new/expiringdict-1.2.2/README.rst
--- old/expiringdict-1.2.1/README.rst 2020-06-02 23:38:44.000000000 +0200
+++ new/expiringdict-1.2.2/README.rst 2022-06-20 14:11:57.000000000 +0200
@@ -7,6 +7,8 @@
.. image::
https://coveralls.io/repos/github/mailgun/expiringdict/badge.svg?branch=master
:target: https://coveralls.io/github/mailgun/expiringdict?branch=master
+ChangeLog_
+
expiringdict is a Python caching library. The core of the library is
ExpiringDict class which
is an ordered dictionary with auto-expiring values for caching purposes.
Expiration happens on
any access, object is locked during cleanup from expired values. ExpiringDict
can not store
@@ -14,6 +16,8 @@
**Note:** Iteration over dict and also keys() do not remove expired values!
+.. _ChangeLog: ./CHANGELOG.rst
+
Installation
------------
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/expiringdict-1.2.1/setup.py
new/expiringdict-1.2.2/setup.py
--- old/expiringdict-1.2.1/setup.py 2020-06-02 23:38:44.000000000 +0200
+++ new/expiringdict-1.2.2/setup.py 2022-06-20 14:11:57.000000000 +0200
@@ -1,4 +1,10 @@
from setuptools import setup, find_packages
+
+try:
+ ModuleNotFoundError
+except NameError:
+ ModuleNotFoundError = ImportError
+
try:
import md5 # fix for "No module named _md5" error
except ImportError:
@@ -14,7 +20,7 @@
]
setup(name="expiringdict",
- version="1.2.1",
+ version="1.2.2",
description="Dictionary with auto-expiring values for caching purposes",
long_description=open("README.rst").read(),
classifiers=[