Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-openstack-doc-tools for 
openSUSE:Factory checked in at 2022-06-20 15:39:00
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-openstack-doc-tools (Old)
 and      /work/SRC/openSUSE:Factory/.python-openstack-doc-tools.new.1548 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-openstack-doc-tools"

Mon Jun 20 15:39:00 2022 rev:10 rq:983962 version:3.3.1

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/python-openstack-doc-tools/python-openstack-doc-tools.changes
    2022-02-04 21:52:26.651131935 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-openstack-doc-tools.new.1548/python-openstack-doc-tools.changes
  2022-06-20 15:39:35.351062518 +0200
@@ -1,0 +2,17 @@
+Tue Jun  7 09:21:29 UTC 2022 - cloud-de...@suse.de
+
+- update to version 3.3.1
+  - Use TOX_CONSTRAINTS_FILE
+  - Use py3 as the default runtime for tox
+  - Use Python 3.8 as the default runtime for tox
+  - Update CI to use unversioned jobs template
+  - Dropping lower constraints testing
+  - Move flake8 as a pre-commit local target.
+  - Adding pre-commit
+
+-------------------------------------------------------------------
+Tue May 24 21:44:50 UTC 2022 - Dirk M??ller <dmuel...@suse.com>
+
+- remove unneded dependencies 
+
+-------------------------------------------------------------------

Old:
----
  openstack-doc-tools-3.3.0.tar.gz

New:
----
  openstack-doc-tools-3.3.1.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python-openstack-doc-tools.spec ++++++
--- /var/tmp/diff_new_pack.gxhuZ5/_old  2022-06-20 15:39:35.791063161 +0200
+++ /var/tmp/diff_new_pack.gxhuZ5/_new  2022-06-20 15:39:35.795063166 +0200
@@ -18,19 +18,17 @@
 
 %global module os_doc_tools
 Name:           python-openstack-doc-tools
-Version:        3.3.0
+Version:        3.3.1
 Release:        0
 Summary:        OpenStack Docs Tools
 License:        Apache-2.0
 Group:          Development/Languages/Python
 URL:            https://docs.openstack.org/openstack-doc-tools
-Source0:        
https://files.pythonhosted.org/packages/source/o/openstack-doc-tools/openstack-doc-tools-3.3.0.tar.gz
+Source0:        
https://files.pythonhosted.org/packages/source/o/openstack-doc-tools/openstack-doc-tools-3.3.1.tar.gz
 BuildRequires:  openstack-macros
-BuildRequires:  python3-Babel
 BuildRequires:  python3-PyYAML >= 3.13
 BuildRequires:  python3-Sphinx
 BuildRequires:  python3-lxml >= 4.5.0
-BuildRequires:  python3-mock
 BuildRequires:  python3-openstackdocstheme
 BuildRequires:  python3-pbr >= 2.0.0
 BuildArch:      noarch

++++++ openstack-doc-tools-3.3.0.tar.gz -> openstack-doc-tools-3.3.1.tar.gz 
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/openstack-doc-tools-3.3.0/.pre-commit-config.yaml 
new/openstack-doc-tools-3.3.1/.pre-commit-config.yaml
--- old/openstack-doc-tools-3.3.0/.pre-commit-config.yaml       1970-01-01 
01:00:00.000000000 +0100
+++ new/openstack-doc-tools-3.3.1/.pre-commit-config.yaml       2022-05-05 
11:52:04.000000000 +0200
@@ -0,0 +1,39 @@
+# 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:
+  python: python3
+
+repos:
+  - repo: https://github.com/pre-commit/pre-commit-hooks
+    rev: 9136088a246768144165fcc3ecc3d31bb686920a # v3.3.0
+    hooks:
+      - id: trailing-whitespace
+      # Replaces or checks mixed line ending
+      - id: mixed-line-ending
+        args: ['--fix', 'lf']
+        exclude: '.*\.(svg)$'
+      # Forbid files which have a UTF-8 byte-order marker
+      - id: check-byte-order-marker
+      # Checks that non-binary executables have a proper shebang
+      - id: check-executables-have-shebangs
+      # Check for files that contain merge conflict strings.
+      - id: check-merge-conflict
+      # Check for debugger imports and py37+ breakpoint()
+      # calls in python source
+      - id: debug-statements
+      - id: check-yaml
+        files: .*\.(yaml|yml)$
+  - 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/openstack-doc-tools-3.3.0/.zuul.yaml 
new/openstack-doc-tools-3.3.1/.zuul.yaml
--- old/openstack-doc-tools-3.3.0/.zuul.yaml    2020-09-11 21:20:52.000000000 
+0200
+++ new/openstack-doc-tools-3.3.1/.zuul.yaml    2022-05-05 11:52:04.000000000 
+0200
@@ -2,6 +2,5 @@
     templates:
       - check-requirements
       - release-notes-jobs-python3
-      - openstack-python3-victoria-jobs
+      - openstack-python3-jobs
       - publish-openstack-docs-pti
-      - openstack-lower-constraints-jobs
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/openstack-doc-tools-3.3.0/AUTHORS 
new/openstack-doc-tools-3.3.1/AUTHORS
--- old/openstack-doc-tools-3.3.0/AUTHORS       2020-09-11 21:22:13.000000000 
+0200
+++ new/openstack-doc-tools-3.3.1/AUTHORS       2022-05-05 11:52:36.000000000 
+0200
@@ -16,6 +16,7 @@
 Christian Berendt <m...@cberendt.net>
 Christian Schwede <cschw...@redhat.com>
 Corey Bryant <corey.bry...@canonical.com>
+Daniel Bengtsson <dbe...@redhat.com>
 Davanum Srinivas <d...@linux.vnet.ibm.com>
 Deepti Ramakrishna <deepti.ramakris...@intel.com>
 Dirk Mueller <d...@dmllr.de>
@@ -61,6 +62,7 @@
 Sreedhar Varma <sreedhar.varma....@kaminario.com>
 Sripriya <ssee...@brocade.com>
 Stephen Finucane <sfinu...@redhat.com>
+Stephen Finucane <stephen...@redhat.com>
 Stephen Gordon <sgor...@redhat.com>
 Swapnil Kulkarni (coolsvap) <m...@coolsvap.net>
 Tom Fifield <t...@openstack.org>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/openstack-doc-tools-3.3.0/ChangeLog 
new/openstack-doc-tools-3.3.1/ChangeLog
--- old/openstack-doc-tools-3.3.0/ChangeLog     2020-09-11 21:22:13.000000000 
+0200
+++ new/openstack-doc-tools-3.3.1/ChangeLog     2022-05-05 11:52:36.000000000 
+0200
@@ -1,6 +1,17 @@
 CHANGES
 =======
 
+3.3.1
+-----
+
+* Update CI to use unversioned jobs template
+* Move flake8 as a pre-commit local target
+* Dropping lower constraints testing
+* Use TOX\_CONSTRAINTS\_FILE
+* Use py3 as the default runtime for tox
+* Use Python 3.8 as the default runtime for tox
+* Adding pre-commit
+
 3.3.0
 -----
 
@@ -567,8 +578,8 @@
 * autohelp: load oslo.middleware options
 * Do no build Debian Install Guide by default
 
-0.26
-----
+0.26.0
+------
 
 * Further improvements for openstack-auto-commands
 * Improve openstack-auto-commands
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/openstack-doc-tools-3.3.0/PKG-INFO 
new/openstack-doc-tools-3.3.1/PKG-INFO
--- old/openstack-doc-tools-3.3.0/PKG-INFO      2020-09-11 21:22:13.000000000 
+0200
+++ new/openstack-doc-tools-3.3.1/PKG-INFO      2022-05-05 11:52:36.635881200 
+0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.2
 Name: openstack-doc-tools
-Version: 3.3.0
+Version: 3.3.1
 Summary: Tools for OpenStack Documentation
 Home-page: https://docs.openstack.org/openstack-doc-tools/latest/
 Author: OpenStack Documentation
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/openstack-doc-tools-3.3.0/doc/source/conf.py 
new/openstack-doc-tools-3.3.1/doc/source/conf.py
--- old/openstack-doc-tools-3.3.0/doc/source/conf.py    2020-09-11 
21:20:52.000000000 +0200
+++ new/openstack-doc-tools-3.3.1/doc/source/conf.py    2022-05-05 
11:52:04.000000000 +0200
@@ -1,3 +1,5 @@
+# Copyright (C) 2020 Red Hat, Inc.
+#
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
 # You may obtain a copy of the License at
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/openstack-doc-tools-3.3.0/openstack_doc_tools.egg-info/PKG-INFO 
new/openstack-doc-tools-3.3.1/openstack_doc_tools.egg-info/PKG-INFO
--- old/openstack-doc-tools-3.3.0/openstack_doc_tools.egg-info/PKG-INFO 
2020-09-11 21:22:13.000000000 +0200
+++ new/openstack-doc-tools-3.3.1/openstack_doc_tools.egg-info/PKG-INFO 
2022-05-05 11:52:36.000000000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.2
 Name: openstack-doc-tools
-Version: 3.3.0
+Version: 3.3.1
 Summary: Tools for OpenStack Documentation
 Home-page: https://docs.openstack.org/openstack-doc-tools/latest/
 Author: OpenStack Documentation
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/openstack-doc-tools-3.3.0/openstack_doc_tools.egg-info/SOURCES.txt 
new/openstack-doc-tools-3.3.1/openstack_doc_tools.egg-info/SOURCES.txt
--- old/openstack-doc-tools-3.3.0/openstack_doc_tools.egg-info/SOURCES.txt      
2020-09-11 21:22:13.000000000 +0200
+++ new/openstack-doc-tools-3.3.1/openstack_doc_tools.egg-info/SOURCES.txt      
2022-05-05 11:52:36.000000000 +0200
@@ -1,4 +1,5 @@
 .mailmap
+.pre-commit-config.yaml
 .stestr.conf
 .zuul.yaml
 AUTHORS
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/openstack-doc-tools-3.3.0/openstack_doc_tools.egg-info/pbr.json 
new/openstack-doc-tools-3.3.1/openstack_doc_tools.egg-info/pbr.json
--- old/openstack-doc-tools-3.3.0/openstack_doc_tools.egg-info/pbr.json 
2020-09-11 21:22:13.000000000 +0200
+++ new/openstack-doc-tools-3.3.1/openstack_doc_tools.egg-info/pbr.json 
2022-05-05 11:52:36.000000000 +0200
@@ -1 +1 @@
-{"git_version": "86d1aa8", "is_release": true}
\ No newline at end of file
+{"git_version": "d14b09d", "is_release": true}
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/openstack-doc-tools-3.3.0/sitemap/transform-sitemap.xslt 
new/openstack-doc-tools-3.3.1/sitemap/transform-sitemap.xslt
--- old/openstack-doc-tools-3.3.0/sitemap/transform-sitemap.xslt        
2020-09-11 21:20:52.000000000 +0200
+++ new/openstack-doc-tools-3.3.1/sitemap/transform-sitemap.xslt        
2022-05-05 11:52:04.000000000 +0200
@@ -4,17 +4,17 @@
 <xsl:stylesheet version="1.0"
     xmlns:sm="http://www.sitemaps.org/schemas/sitemap/0.9";
     xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>
-    
+
     <!-- template match equals any other url element, keep -->
     <xsl:template match="node() | @*">
         <xsl:copy>
             <xsl:apply-templates select="node() | @*"/>
         </xsl:copy>
     </xsl:template>
-    
+
     <!-- discard any url/loc that refer to trunk or folsom -->
     <xsl:template 
match="sm:url[starts-with(./sm:loc,'http://docs.openstack.org/trunk')]"/>
     <xsl:template 
match="sm:url[starts-with(./sm:loc,'http://docs.openstack.org/draft')]"/>
     <xsl:template 
match="sm:url[starts-with(./sm:loc,'http://docs.openstack.org/folsom')]"/>
-    
+
 </xsl:stylesheet>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/openstack-doc-tools-3.3.0/test-requirements.txt 
new/openstack-doc-tools-3.3.1/test-requirements.txt
--- old/openstack-doc-tools-3.3.0/test-requirements.txt 2020-09-11 
21:20:52.000000000 +0200
+++ new/openstack-doc-tools-3.3.1/test-requirements.txt 2022-05-05 
11:52:04.000000000 +0200
@@ -13,3 +13,5 @@
 reno>=3.1.0 # Apache-2.0
 openstackdocstheme>=2.2.1 # Apache-2.0
 stestr>=2.0.0 # Apache-2.0
+
+pre-commit>=2.6.0 # MIT
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/openstack-doc-tools-3.3.0/tox.ini 
new/openstack-doc-tools-3.3.1/tox.ini
--- old/openstack-doc-tools-3.3.0/tox.ini       2020-09-11 21:20:52.000000000 
+0200
+++ new/openstack-doc-tools-3.3.1/tox.ini       2022-05-05 11:52:04.000000000 
+0200
@@ -1,6 +1,6 @@
 [tox]
 minversion = 3.1.0
-envlist = py37,pep8
+envlist = py3,pep8
 skipsdist = True
 # Automatic envs (pyXX) will only use the python version appropriate to that
 # env and ignore basepython inherited from [testenv] if we set
@@ -14,14 +14,14 @@
 # Install also sitemap scraping tool, not installed by default
 # therefore not in requirements file
 deps = scrapy>=1.0.0
-       
-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 --slowest {posargs}
 
 [testenv:pep8]
 commands =
-    flake8
+    pre-commit run -a
     # Run doc8 to check .rst and .txt files.
     # HACKING.rst is the only file that is not referenced from
     # doc/source, so add it explicitly.

Reply via email to