Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python-aiodataloader for
openSUSE:Factory checked in at 2022-01-26 21:27:31
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-aiodataloader (Old)
and /work/SRC/openSUSE:Factory/.python-aiodataloader.new.1938 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-aiodataloader"
Wed Jan 26 21:27:31 2022 rev:2 rq:949296 version:0.2.1
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-aiodataloader/python-aiodataloader.changes
2021-12-19 17:23:27.043785247 +0100
+++
/work/SRC/openSUSE:Factory/.python-aiodataloader.new.1938/python-aiodataloader.changes
2022-01-26 21:28:33.441341724 +0100
@@ -1,0 +2,7 @@
+Mon Jan 24 10:08:57 UTC 2022 - Sebastian Wagner <[email protected]>
+
+- update to version 0.2.1:
+ - Resolve deprecation warning for Python 3.9
+ - Fix print related typos in the README files
+
+-------------------------------------------------------------------
Old:
----
python-aiodataloader-0.2.0+git20201019+0345c66.tar.gz
New:
----
python-aiodataloader-0.2.1.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-aiodataloader.spec ++++++
--- /var/tmp/diff_new_pack.v1mlzA/_old 2022-01-26 21:28:33.829339049 +0100
+++ /var/tmp/diff_new_pack.v1mlzA/_new 2022-01-26 21:28:33.833339021 +0100
@@ -1,7 +1,7 @@
#
# spec file for package python-aiodataloader
#
-# Copyright (c) 2021 SUSE LLC
+# Copyright (c) 2022 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -18,16 +18,17 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-aiodataloader
-Version: 0.2.0+git20201019+0345c66
+Version: 0.2.1
Release: 0
Summary: Asyncio DataLoader implementation for Python
License: MIT
URL: https://github.com/syrusakbary/aiodataloader
-Source:
https://github.com/syrusakbary/aiodataloader/archive/0345c66f2f15a724a5e241ca73b8823d2ddd0625.tar.gz#/%{name}-%{version}.tar.gz
+Source:
https://github.com/syrusakbary/aiodataloader/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
+# pypi tarball has no tests
#Source:
https://files.pythonhosted.org/packages/source/a/aiodataloader/aiodataloader-%%{version}.tar.gz
-BuildRequires: python-rpm-macros
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
+BuildRequires: python-rpm-macros
# SECTION tests
BuildRequires: %{python_module pytest >= 3.6}
BuildRequires: %{python_module mock}
@@ -42,7 +43,7 @@
batching and caching.
%prep
-%setup -q -n aiodataloader-0345c66f2f15a724a5e241ca73b8823d2ddd0625
+%setup -q -n aiodataloader-%{version}
%build
%python_build
++++++ python-aiodataloader-0.2.0+git20201019+0345c66.tar.gz ->
python-aiodataloader-0.2.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/aiodataloader-0345c66f2f15a724a5e241ca73b8823d2ddd0625/aiodataloader.py
new/aiodataloader-0.2.1/aiodataloader.py
--- old/aiodataloader-0345c66f2f15a724a5e241ca73b8823d2ddd0625/aiodataloader.py
2020-10-19 21:21:54.000000000 +0200
+++ new/aiodataloader-0.2.1/aiodataloader.py 2022-01-24 10:42:21.000000000
+0100
@@ -6,7 +6,7 @@
from typing import List # flake8: noqa
-__version__ = '0.2.0'
+__version__ = '0.2.1'
Loader = namedtuple('Loader', 'key,future')