Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-pamqp for openSUSE:Factory checked in at 2022-10-29 20:16:32 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-pamqp (Old) and /work/SRC/openSUSE:Factory/.python-pamqp.new.2275 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-pamqp" Sat Oct 29 20:16:32 2022 rev:10 rq:1032040 version:3.2.1 Changes: -------- --- /work/SRC/openSUSE:Factory/python-pamqp/python-pamqp.changes 2022-10-06 07:42:13.656690446 +0200 +++ /work/SRC/openSUSE:Factory/.python-pamqp.new.2275/python-pamqp.changes 2022-10-29 20:17:50.158443779 +0200 @@ -1,0 +2,6 @@ +Fri Oct 28 18:36:51 UTC 2022 - Yogalakshmi Arunachalam <yarunacha...@suse.com> + +- Update to 3.2.1 + Fix line length issue in comment + +------------------------------------------------------------------- Old: ---- pamqp-3.2.0.tar.gz New: ---- pamqp-3.2.1.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-pamqp.spec ++++++ --- /var/tmp/diff_new_pack.BVL4rA/_old 2022-10-29 20:17:50.646446380 +0200 +++ /var/tmp/diff_new_pack.BVL4rA/_new 2022-10-29 20:17:50.654446422 +0200 @@ -19,7 +19,7 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} %define skip_python2 1 Name: python-pamqp -Version: 3.2.0 +Version: 3.2.1 Release: 0 Summary: Pure-python AMQP 0-9-1 frame encoder and decoder License: BSD-3-Clause ++++++ pamqp-3.2.0.tar.gz -> pamqp-3.2.1.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pamqp-3.2.0/.github/workflows/deploy.yaml new/pamqp-3.2.1/.github/workflows/deploy.yaml --- old/pamqp-3.2.0/.github/workflows/deploy.yaml 2022-06-27 16:39:36.000000000 +0200 +++ new/pamqp-3.2.1/.github/workflows/deploy.yaml 2022-09-08 02:13:14.000000000 +0200 @@ -11,8 +11,10 @@ steps: - name: Checkout repository uses: actions/checkout@v1 + - name: Install wheel + run: pip3 install wheel - name: Build package - run: python3 setup.py sdist + run: python3 setup.py sdist bdist_wheel - name: Publish package uses: pypa/gh-action-pypi-publish@master with: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pamqp-3.2.0/docs/changelog.rst new/pamqp-3.2.1/docs/changelog.rst --- old/pamqp-3.2.0/docs/changelog.rst 2022-06-27 16:39:36.000000000 +0200 +++ new/pamqp-3.2.1/docs/changelog.rst 2022-09-08 02:13:14.000000000 +0200 @@ -1,6 +1,10 @@ Changelog ========= +3.2.1 (2022-09-07) +------------------ +- Add wheel to distribution format (#43) + 3.2.0 (2022-06-27) ------------------ - Allow long-str to fall back to bytes in case of UnicodeDecodeError (AMQP 1.0 interop) (#40 - `dmaone <https://github.com/dmaone>`_) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pamqp-3.2.0/pamqp/__init__.py new/pamqp-3.2.1/pamqp/__init__.py --- old/pamqp-3.2.0/pamqp/__init__.py 2022-06-27 16:39:36.000000000 +0200 +++ new/pamqp-3.2.1/pamqp/__init__.py 2022-09-08 02:13:14.000000000 +0200 @@ -3,7 +3,7 @@ __author__ = 'Gavin M. Roy' __email__ = 'gavinm...@gmail.com' __since__ = '2011-09-23' -__version__ = version = '3.2.0' +__version__ = version = '3.2.1' __all__ = [ 'body', 'decode', 'commands', 'constants', 'encode', 'exceptions', 'frame', diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pamqp-3.2.0/pamqp/decode.py new/pamqp-3.2.1/pamqp/decode.py --- old/pamqp-3.2.0/pamqp/decode.py 2022-06-27 16:39:36.000000000 +0200 +++ new/pamqp-3.2.1/pamqp/decode.py 2022-09-08 02:13:14.000000000 +0200 @@ -239,8 +239,8 @@ def short_short_uint(value: bytes) -> typing.Tuple[int, int]: - """Decode a unsigned short-short integer value, returning bytes consumed and - the value. + """Decode a unsigned short-short integer value, returning bytes consumed + and the value. :param value: The binary value to decode :rtype: :class:`tuple` (:class:`int`, :class:`int`) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pamqp-3.2.0/setup.cfg new/pamqp-3.2.1/setup.cfg --- old/pamqp-3.2.0/setup.cfg 2022-06-27 16:39:36.000000000 +0200 +++ new/pamqp-3.2.1/setup.cfg 2022-09-08 02:13:14.000000000 +0200 @@ -58,6 +58,9 @@ flake8-tuple yapf +[bdist_wheel] +universal = 1 + [build_sphinx] all-files = 1