Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python-osc-tiny for openSUSE:Factory
checked in at 2022-06-18 22:06:25
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-osc-tiny (Old)
and /work/SRC/openSUSE:Factory/.python-osc-tiny.new.1548 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-osc-tiny"
Sat Jun 18 22:06:25 2022 rev:14 rq:983573 version:0.6.1
Changes:
--------
--- /work/SRC/openSUSE:Factory/python-osc-tiny/python-osc-tiny.changes
2022-06-10 15:57:58.868853082 +0200
+++
/work/SRC/openSUSE:Factory/.python-osc-tiny.new.1548/python-osc-tiny.changes
2022-06-18 22:06:29.843682325 +0200
@@ -1,0 +2,6 @@
+Fri Jun 17 09:49:36 UTC 2022 - Andreas Hasenkopf <[email protected]>
+
+- Release 0.6.1
+ * Removed obsolete parser instance to allow pickling of Osc instances
+
+-------------------------------------------------------------------
Old:
----
osc-tiny-0.6.0.tar.gz
New:
----
osc-tiny-0.6.1.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-osc-tiny.spec ++++++
--- /var/tmp/diff_new_pack.jKNY8e/_old 2022-06-18 22:06:30.619683427 +0200
+++ /var/tmp/diff_new_pack.jKNY8e/_new 2022-06-18 22:06:30.627683438 +0200
@@ -19,7 +19,7 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%define skip_python2 1
Name: python-osc-tiny
-Version: 0.6.0
+Version: 0.6.1
Release: 0
Summary: Client API for openSUSE BuildService
License: MIT
++++++ osc-tiny-0.6.0.tar.gz -> osc-tiny-0.6.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/osc-tiny-0.6.0/PKG-INFO new/osc-tiny-0.6.1/PKG-INFO
--- old/osc-tiny-0.6.0/PKG-INFO 2022-06-09 13:50:02.441182900 +0200
+++ new/osc-tiny-0.6.1/PKG-INFO 2022-06-17 11:47:36.354644500 +0200
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: osc-tiny
-Version: 0.6.0
+Version: 0.6.1
Summary: Client API for openSUSE BuildService
Home-page: http://github.com/crazyscientist/osc-tiny
Download-URL: http://github.com/crazyscientist/osc-tiny/tarball/master
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/osc-tiny-0.6.0/osc_tiny.egg-info/PKG-INFO
new/osc-tiny-0.6.1/osc_tiny.egg-info/PKG-INFO
--- old/osc-tiny-0.6.0/osc_tiny.egg-info/PKG-INFO 2022-06-09
13:50:01.000000000 +0200
+++ new/osc-tiny-0.6.1/osc_tiny.egg-info/PKG-INFO 2022-06-17
11:47:35.000000000 +0200
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: osc-tiny
-Version: 0.6.0
+Version: 0.6.1
Summary: Client API for openSUSE BuildService
Home-page: http://github.com/crazyscientist/osc-tiny
Download-URL: http://github.com/crazyscientist/osc-tiny/tarball/master
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/osc-tiny-0.6.0/osctiny/__init__.py
new/osc-tiny-0.6.1/osctiny/__init__.py
--- old/osc-tiny-0.6.0/osctiny/__init__.py 2022-06-09 13:49:46.000000000
+0200
+++ new/osc-tiny-0.6.1/osctiny/__init__.py 2022-06-17 11:47:24.000000000
+0200
@@ -6,4 +6,4 @@
__all__ = ['Osc', 'bs_requests', 'buildresults', 'comments', 'packages',
'projects', 'search', 'users']
-__version__ = "0.5.0"
+__version__ = "0.6.1"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/osc-tiny-0.6.0/osctiny/osc.py
new/osc-tiny-0.6.1/osctiny/osc.py
--- old/osc-tiny-0.6.0/osctiny/osc.py 2022-06-09 13:49:46.000000000 +0200
+++ new/osc-tiny-0.6.1/osctiny/osc.py 2022-06-17 11:47:24.000000000 +0200
@@ -16,7 +16,7 @@
import warnings
# pylint: disable=no-name-in-module
-from lxml.objectify import fromstring, makeparser
+from lxml.objectify import fromstring
from requests import Session, Request
from requests.auth import HTTPBasicAuth
from requests.cookies import RequestsCookieJar, cookiejar_from_dict
@@ -146,8 +146,6 @@
except (ValueError, NotImplementedError, FileNotFoundError) as
error:
raise OscError from error
- self.parser = makeparser(huge_tree=True)
-
# API endpoints
self.build = Build(osc_obj=self)
self.comments = Comment(osc_obj=self)
@@ -382,7 +380,7 @@
text = response.text
try:
- return fromstring(text, self.parser)
+ return fromstring(text)
except ValueError:
# Just in case OBS returns a Unicode string with encoding
# declaration
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/osc-tiny-0.6.0/setup.py new/osc-tiny-0.6.1/setup.py
--- old/osc-tiny-0.6.0/setup.py 2022-06-09 13:49:46.000000000 +0200
+++ new/osc-tiny-0.6.1/setup.py 2022-06-17 11:47:24.000000000 +0200
@@ -19,7 +19,7 @@
setup(
name='osc-tiny',
- version='0.6.0',
+ version='0.6.1',
description='Client API for openSUSE BuildService',
long_description=long_description,
long_description_content_type="text/markdown",