Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-ddt for openSUSE:Factory checked in at 2024-03-20 21:10:20 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-ddt (Old) and /work/SRC/openSUSE:Factory/.python-ddt.new.1905 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-ddt" Wed Mar 20 21:10:20 2024 rev:22 rq:1158948 version:1.7.2 Changes: -------- --- /work/SRC/openSUSE:Factory/python-ddt/python-ddt.changes 2024-01-09 20:49:26.179746708 +0100 +++ /work/SRC/openSUSE:Factory/.python-ddt.new.1905/python-ddt.changes 2024-03-20 21:10:45.682047866 +0100 @@ -1,0 +2,6 @@ +Mon Mar 18 10:29:00 UTC 2024 - Dirk Müller <[email protected]> + +- update to 1.7.2: + * Github actions to use tox for tests + +------------------------------------------------------------------- Old: ---- ddt-1.7.1.tar.gz New: ---- ddt-1.7.2.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-ddt.spec ++++++ --- /var/tmp/diff_new_pack.dtsTR4/_old 2024-03-20 21:10:48.382147085 +0100 +++ /var/tmp/diff_new_pack.dtsTR4/_new 2024-03-20 21:10:48.382147085 +0100 @@ -18,7 +18,7 @@ %{?sle15_python_module_pythons} Name: python-ddt -Version: 1.7.1 +Version: 1.7.2 Release: 0 Summary: Data-Driven/Decorated Tests License: MIT ++++++ ddt-1.7.1.tar.gz -> ddt-1.7.2.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ddt-1.7.1/MANIFEST.in new/ddt-1.7.2/MANIFEST.in --- old/ddt-1.7.1/MANIFEST.in 2024-01-03 05:48:32.000000000 +0100 +++ new/ddt-1.7.2/MANIFEST.in 2024-02-26 02:36:21.000000000 +0100 @@ -1,2 +1,6 @@ include *.md recursive-include test *.py *.json *.yaml +include MANIFEST.in +include LICENSE.md +include tox.ini +global-exclude *.py[cod] __pycache__ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ddt-1.7.1/PKG-INFO new/ddt-1.7.2/PKG-INFO --- old/ddt-1.7.1/PKG-INFO 2024-01-03 05:48:40.458808200 +0100 +++ new/ddt-1.7.2/PKG-INFO 2024-02-26 02:36:31.915733000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: ddt -Version: 1.7.1 +Version: 1.7.2 Summary: Data-Driven/Decorated Tests Home-page: https://github.com/datadriventests/ddt Author: Carles Barrobés diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ddt-1.7.1/ddt.egg-info/PKG-INFO new/ddt-1.7.2/ddt.egg-info/PKG-INFO --- old/ddt-1.7.1/ddt.egg-info/PKG-INFO 2024-01-03 05:48:40.000000000 +0100 +++ new/ddt-1.7.2/ddt.egg-info/PKG-INFO 2024-02-26 02:36:31.000000000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: ddt -Version: 1.7.1 +Version: 1.7.2 Summary: Data-Driven/Decorated Tests Home-page: https://github.com/datadriventests/ddt Author: Carles Barrobés diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ddt-1.7.1/ddt.egg-info/SOURCES.txt new/ddt-1.7.2/ddt.egg-info/SOURCES.txt --- old/ddt-1.7.1/ddt.egg-info/SOURCES.txt 2024-01-03 05:48:40.000000000 +0100 +++ new/ddt-1.7.2/ddt.egg-info/SOURCES.txt 2024-02-26 02:36:31.000000000 +0100 @@ -5,6 +5,7 @@ ddt.py setup.cfg setup.py +tox.ini ddt.egg-info/PKG-INFO ddt.egg-info/SOURCES.txt ddt.egg-info/dependency_links.txt diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ddt-1.7.1/ddt.py new/ddt-1.7.2/ddt.py --- old/ddt-1.7.1/ddt.py 2024-01-03 05:48:32.000000000 +0100 +++ new/ddt-1.7.2/ddt.py 2024-02-26 02:36:21.000000000 +0100 @@ -23,7 +23,7 @@ from collections.abc import Sequence -__version__ = '1.7.1' +__version__ = '1.7.2' # These attributes will not conflict with any real python attribute # They are added to the decorated test method and processed later diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ddt-1.7.1/tox.ini new/ddt-1.7.2/tox.ini --- old/ddt-1.7.1/tox.ini 1970-01-01 01:00:00.000000000 +0100 +++ new/ddt-1.7.2/tox.ini 2024-02-26 02:36:21.000000000 +0100 @@ -0,0 +1,29 @@ +[tox] +envlist = py36,py37,py38,py39,py310 + +[testenv] +deps = + pytest + pytest-cov + coverage + aiounittest + flake8 + six>=1.4.0 + PyYAML +commands = + pytest --cov=ddt --cov-report html + flake8 ddt.py test + +[flake8] +max-line-length = 127 +exclude = .git,__pycache__,docs/source/conf.py,old,build,dist,.tox,.venv +max-complexity = 10 + +[gh-actions] +python = + 3.8: py38 + 3.6: py36 + 3.7: py37 + 3.8: py38 + 3.9: py39 + 3.10: py310
