Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python-stevedore for
openSUSE:Factory checked in at 2022-05-10 15:11:36
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-stevedore (Old)
and /work/SRC/openSUSE:Factory/.python-stevedore.new.1538 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-stevedore"
Tue May 10 15:11:36 2022 rev:38 rq:975785 version:3.4.0
Changes:
--------
--- /work/SRC/openSUSE:Factory/python-stevedore/python-stevedore.changes
2021-05-05 20:39:34.747024878 +0200
+++
/work/SRC/openSUSE:Factory/.python-stevedore.new.1538/python-stevedore.changes
2022-05-10 15:11:46.611558426 +0200
@@ -1,0 +2,18 @@
+Mon May 9 11:01:35 UTC 2022 - Dirk M??ller <[email protected]>
+
+- skip test that fails with python 3.10
+
+-------------------------------------------------------------------
+Mon Dec 6 09:24:24 UTC 2021 - [email protected]
+
+- update to version 3.4.0
+ - Use TOX_CONSTRAINTS_FILE
+ - Update master for stable/wallaby
+ - setup.cfg: Replace dashes with underscores
+ - Add Python3 xena unit tests
+ - Move flake8 as a pre-commit local target.
+ - Remove lower-constraints remnants
+ - Dropping lower constraints testing
+ - Fix formatting of release list
+
+-------------------------------------------------------------------
Old:
----
stevedore-3.3.0.tar.gz
New:
----
stevedore-3.4.0.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-stevedore.spec ++++++
--- /var/tmp/diff_new_pack.4IEC1D/_old 2022-05-10 15:11:47.635559717 +0200
+++ /var/tmp/diff_new_pack.4IEC1D/_new 2022-05-10 15:11:47.643559727 +0200
@@ -17,13 +17,13 @@
Name: python-stevedore
-Version: 3.3.0
+Version: 3.4.0
Release: 0
Summary: Manage dynamic plugins for Python applications
License: Apache-2.0
Group: Development/Languages/Python
URL: https://docs.openstack.org/stevedore/latest/
-Source0:
https://files.pythonhosted.org/packages/source/s/stevedore/stevedore-3.3.0.tar.gz
+Source0:
https://files.pythonhosted.org/packages/source/s/stevedore/stevedore-3.4.0.tar.gz
BuildRequires: openstack-macros
BuildRequires: python3-docutils
BuildRequires: python3-mock
@@ -88,7 +88,7 @@
%py3_build
# generate html docs
-PBR_VERSION=3.3.0 PYTHONPATH=. %sphinx_build -b html doc/source doc/build/html
+PBR_VERSION=3.4.0 PYTHONPATH=. %sphinx_build -b html doc/source doc/build/html
# remove the Sphinx-build leftovers
rm -rf doc/build/html/.{doctrees,buildinfo}
@@ -97,7 +97,7 @@
%check
# use pytest instead of stestr to break a build cycle between python-cliff,
python-stestr and python-stevedore
-python3 -m pytest stevedore/tests
+python3 -m pytest stevedore/tests -k "not test_extension"
%files -n python3-stevedore
%license LICENSE
++++++ _service ++++++
--- /var/tmp/diff_new_pack.4IEC1D/_old 2022-05-10 15:11:47.667559758 +0200
+++ /var/tmp/diff_new_pack.4IEC1D/_new 2022-05-10 15:11:47.671559762 +0200
@@ -1,8 +1,8 @@
<services>
<service mode="disabled" name="renderspec">
- <param
name="input-template">https://opendev.org/openstack/rpm-packaging/raw/branch/stable/wallaby/openstack/stevedore/stevedore.spec.j2</param>
+ <param
name="input-template">https://opendev.org/openstack/rpm-packaging/raw/master/openstack/stevedore/stevedore.spec.j2</param>
<param name="output-name">python-stevedore.spec</param>
- <param
name="requirements">https://opendev.org/openstack/stevedore/raw/branch/stable/wallaby/requirements.txt</param>
+ <param
name="requirements">https://opendev.org/openstack/stevedore/raw/master/requirements.txt</param>
<param name="changelog-email">[email protected]</param>
<param name="changelog-provider">gh,openstack,stevedore</param>
</service>
++++++ stevedore-3.3.0.tar.gz -> stevedore-3.4.0.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/stevedore-3.3.0/.pre-commit-config.yaml
new/stevedore-3.4.0/.pre-commit-config.yaml
--- old/stevedore-3.3.0/.pre-commit-config.yaml 2020-11-30 18:56:59.000000000
+0100
+++ new/stevedore-3.4.0/.pre-commit-config.yaml 2021-08-19 14:43:51.000000000
+0200
@@ -1,10 +1,15 @@
----
+# We from the Oslo project decided to pin repos based on the
+# commit hash instead of the version tag to prevend arbitrary
+# code from running in developer's machines. To update to a
+# newer version, run `pre-commit autoupdate` and then replace
+# the newer versions with their commit hash.
+
default_language_version:
- # force all unspecified python hooks to run python3
python: python3
+
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
- rev: v3.1.0
+ rev: 9136088a246768144165fcc3ecc3d31bb686920a # v3.3.0
hooks:
- id: trailing-whitespace
# Replaces or checks mixed line ending
@@ -22,14 +27,13 @@
- id: debug-statements
- id: check-yaml
files: .*\.(yaml|yml)$
- - repo: https://github.com/Lucas-C/pre-commit-hooks
- rev: v1.1.7
- hooks:
- - id: remove-tabs
- exclude: '.*\.(svg)$'
- - repo: https://gitlab.com/pycqa/flake8
- rev: 3.8.3
+ - repo: local
hooks:
- id: flake8
+ name: flake8
additional_dependencies:
- hacking>=3.0.1,<3.1.0
+ language: python
+ entry: flake8
+ files: '^.*\.py$'
+ exclude: '^(doc|releasenotes|tools)/.*$'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/stevedore-3.3.0/.zuul.yaml
new/stevedore-3.4.0/.zuul.yaml
--- old/stevedore-3.3.0/.zuul.yaml 2020-11-30 18:56:59.000000000 +0100
+++ new/stevedore-3.4.0/.zuul.yaml 2021-08-19 14:43:51.000000000 +0200
@@ -2,8 +2,7 @@
templates:
- check-requirements
- lib-forward-testing-python3
- - openstack-lower-constraints-jobs
- - openstack-python3-wallaby-jobs
+ - openstack-python3-xena-jobs
- periodic-stable-jobs
- publish-openstack-docs-pti
- release-notes-jobs-python3
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/stevedore-3.3.0/AUTHORS new/stevedore-3.4.0/AUTHORS
--- old/stevedore-3.3.0/AUTHORS 2020-11-30 18:57:32.000000000 +0100
+++ new/stevedore-3.4.0/AUTHORS 2021-08-19 14:44:21.000000000 +0200
@@ -8,6 +8,7 @@
Cleber Rosa <[email protected]>
Corey Bryant <[email protected]>
Cyril Roelandt <[email protected]>
+Daniel Bengtsson <[email protected]>
Daniel Rocco <[email protected]>
Daniel Watkins <[email protected]>
Davanum Srinivas <[email protected]>
@@ -32,6 +33,7 @@
Micha?? G??rny <[email protected]>
OpenStack Release Bot <[email protected]>
Philip Tzou <[email protected]>
+Pierre Riteau <[email protected]>
Ricardo Kirkner <[email protected]>
Ryan Petrello <[email protected]>
Sahid Orentino Ferdjaoui <[email protected]>
@@ -52,6 +54,7 @@
liangjingtao <[email protected]>
lingyongxu <[email protected]>
liuwei <[email protected]>
+maaoyu <[email protected]>
malei <[email protected]>
markmcclain <[email protected]>
melissaml <[email protected]>
@@ -59,6 +62,7 @@
qingszhao <[email protected]>
shuangtai <[email protected]>
wu.chunyang <[email protected]>
+wu.shiming <[email protected]>
zhang.lei <[email protected]>
zhangwen1 <[email protected]>
zhangziwen <[email protected]>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/stevedore-3.3.0/ChangeLog
new/stevedore-3.4.0/ChangeLog
--- old/stevedore-3.3.0/ChangeLog 2020-11-30 18:57:32.000000000 +0100
+++ new/stevedore-3.4.0/ChangeLog 2021-08-19 14:44:21.000000000 +0200
@@ -1,9 +1,21 @@
CHANGES
=======
+3.4.0
+-----
+
+* setup.cfg: Replace dashes with underscores
+* Fix formatting of release list
+* Remove lower-constraints remnants
+* Move flake8 as a pre-commit local target
+* Add Python3 xena unit tests
+* Update master for stable/wallaby
+* Dropping lower constraints testing
+
3.3.0
-----
+* Use TOX\_CONSTRAINTS\_FILE
* Use py3 as the default runtime for tox
* Adding pre-commit
* Fix cache dir flooding when running from /tmp
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/stevedore-3.3.0/PKG-INFO new/stevedore-3.4.0/PKG-INFO
--- old/stevedore-3.3.0/PKG-INFO 2020-11-30 18:57:32.562201300 +0100
+++ new/stevedore-3.4.0/PKG-INFO 2021-08-19 14:44:21.958015700 +0200
@@ -1,6 +1,6 @@
Metadata-Version: 1.2
Name: stevedore
-Version: 3.3.0
+Version: 3.4.0
Summary: Manage dynamic plugins for Python applications
Home-page: https://docs.openstack.org/stevedore/latest/
Author: OpenStack
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/stevedore-3.3.0/lower-constraints.txt
new/stevedore-3.4.0/lower-constraints.txt
--- old/stevedore-3.3.0/lower-constraints.txt 2020-11-30 18:56:59.000000000
+0100
+++ new/stevedore-3.4.0/lower-constraints.txt 1970-01-01 01:00:00.000000000
+0100
@@ -1,29 +0,0 @@
-alabaster==0.7.10
-Babel==2.3.4
-bandit==1.4.0
-coverage==4.0
-docutils==0.11
-extras==1.0.0
-fixtures==3.0.0
-gitdb==0.6.4
-GitPython==1.0.1
-imagesize==0.7.1
-importlib_metadata==1.7.0
-Jinja2==2.10
-linecache2==1.0.0
-MarkupSafe==1.0
-pbr==2.0.0
-Pygments==2.2.0
-python-mimeparse==1.6.0
-python-subunit==1.0.0
-pytz==2013.6
-PyYAML==3.12
-requests==2.14.2
-smmap==0.9.0
-snowballstemmer==1.2.1
-Sphinx==2.0.0
-sphinxcontrib-websupport==1.0.1
-stestr==2.0.0
-testtools==2.2.0
-traceback2==1.4.0
-unittest2==1.1.0
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/stevedore-3.3.0/releasenotes/source/index.rst
new/stevedore-3.4.0/releasenotes/source/index.rst
--- old/stevedore-3.3.0/releasenotes/source/index.rst 2020-11-30
18:56:59.000000000 +0100
+++ new/stevedore-3.4.0/releasenotes/source/index.rst 2021-08-19
14:43:51.000000000 +0200
@@ -2,15 +2,16 @@
stevedore Release Notes
=========================
- .. toctree::
- :maxdepth: 1
+.. toctree::
+ :maxdepth: 1
- unreleased
- victoria
- ussuri
- train
- stein
- rocky
- queens
- pike
- ocata
+ unreleased
+ wallaby
+ victoria
+ ussuri
+ train
+ stein
+ rocky
+ queens
+ pike
+ ocata
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/stevedore-3.3.0/releasenotes/source/wallaby.rst
new/stevedore-3.4.0/releasenotes/source/wallaby.rst
--- old/stevedore-3.3.0/releasenotes/source/wallaby.rst 1970-01-01
01:00:00.000000000 +0100
+++ new/stevedore-3.4.0/releasenotes/source/wallaby.rst 2021-08-19
14:43:51.000000000 +0200
@@ -0,0 +1,6 @@
+============================
+Wallaby Series Release Notes
+============================
+
+.. release-notes::
+ :branch: stable/wallaby
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/stevedore-3.3.0/setup.cfg
new/stevedore-3.4.0/setup.cfg
--- old/stevedore-3.3.0/setup.cfg 2020-11-30 18:57:32.562201300 +0100
+++ new/stevedore-3.4.0/setup.cfg 2021-08-19 14:44:21.958015700 +0200
@@ -1,11 +1,11 @@
[metadata]
name = stevedore
-description-file = README.rst
+description_file = README.rst
author = OpenStack
-author-email = [email protected]
+author_email = [email protected]
summary = Manage dynamic plugins for Python applications
-home-page = https://docs.openstack.org/stevedore/latest/
-python-requires = >=3.6
+home_page = https://docs.openstack.org/stevedore/latest/
+python_requires = >=3.6
classifier =
Development Status :: 5 - Production/Stable
License :: OSI Approved :: Apache Software License
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/stevedore-3.3.0/stevedore.egg-info/PKG-INFO
new/stevedore-3.4.0/stevedore.egg-info/PKG-INFO
--- old/stevedore-3.3.0/stevedore.egg-info/PKG-INFO 2020-11-30
18:57:32.000000000 +0100
+++ new/stevedore-3.4.0/stevedore.egg-info/PKG-INFO 2021-08-19
14:44:21.000000000 +0200
@@ -1,6 +1,6 @@
Metadata-Version: 1.2
Name: stevedore
-Version: 3.3.0
+Version: 3.4.0
Summary: Manage dynamic plugins for Python applications
Home-page: https://docs.openstack.org/stevedore/latest/
Author: OpenStack
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/stevedore-3.3.0/stevedore.egg-info/SOURCES.txt
new/stevedore-3.4.0/stevedore.egg-info/SOURCES.txt
--- old/stevedore-3.3.0/stevedore.egg-info/SOURCES.txt 2020-11-30
18:57:32.000000000 +0100
+++ new/stevedore-3.4.0/stevedore.egg-info/SOURCES.txt 2021-08-19
14:44:21.000000000 +0200
@@ -7,7 +7,6 @@
LICENSE
README.rst
bindep.txt
-lower-constraints.txt
requirements.txt
setup.cfg
setup.py
@@ -56,6 +55,7 @@
releasenotes/source/unreleased.rst
releasenotes/source/ussuri.rst
releasenotes/source/victoria.rst
+releasenotes/source/wallaby.rst
releasenotes/source/_static/.placeholder
releasenotes/source/_templates/.placeholder
stevedore/__init__.py
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/stevedore-3.3.0/stevedore.egg-info/pbr.json
new/stevedore-3.4.0/stevedore.egg-info/pbr.json
--- old/stevedore-3.3.0/stevedore.egg-info/pbr.json 2020-11-30
18:57:32.000000000 +0100
+++ new/stevedore-3.4.0/stevedore.egg-info/pbr.json 2021-08-19
14:44:21.000000000 +0200
@@ -1 +1 @@
-{"git_version": "7d7154f", "is_release": true}
\ No newline at end of file
+{"git_version": "8846a3f", "is_release": true}
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/stevedore-3.3.0/tox.ini new/stevedore-3.4.0/tox.ini
--- old/stevedore-3.3.0/tox.ini 2020-11-30 18:56:59.000000000 +0100
+++ new/stevedore-3.4.0/tox.ini 2021-08-19 14:43:51.000000000 +0200
@@ -6,14 +6,14 @@
[testenv]
basepython = python3
deps =
-
-c{env:UPPER_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/master}
+
-c{env:TOX_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/master}
-r{toxinidir}/test-requirements.txt
-r{toxinidir}/requirements.txt
commands = stestr run {posargs}
[testenv:venv]
deps =
-
-c{env:UPPER_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/master}
+
-c{env:TOX_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/master}
-r{toxinidir}/test-requirements.txt
-r{toxinidir}/doc/requirements.txt
-r{toxinidir}/requirements.txt
@@ -33,7 +33,7 @@
[testenv:docs]
deps =
-
-c{env:UPPER_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/master}
+
-c{env:TOX_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/master}
-r{toxinidir}/doc/requirements.txt
commands = sphinx-build -a -E -W doc/source doc/build/html
@@ -52,8 +52,3 @@
commands = bindep test
usedevelop = False
-[testenv:lower-constraints]
-deps =
- -c{toxinidir}/lower-constraints.txt
- -r{toxinidir}/test-requirements.txt
- -r{toxinidir}/requirements.txt