Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-virtue for openSUSE:Factory checked in at 2023-07-14 15:35:40 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-virtue (Old) and /work/SRC/openSUSE:Factory/.python-virtue.new.3193 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-virtue" Fri Jul 14 15:35:40 2023 rev:4 rq:1098353 version:2023.7.2 Changes: -------- --- /work/SRC/openSUSE:Factory/python-virtue/python-virtue.changes 2023-06-01 17:21:12.646761601 +0200 +++ /work/SRC/openSUSE:Factory/.python-virtue.new.3193/python-virtue.changes 2023-07-14 15:35:44.045968542 +0200 @@ -1,0 +2,10 @@ +Wed Jul 12 10:43:22 UTC 2023 - Johannes Kastl <ka...@b1-systems.de> + +- update to 2023.7.2: + no changelog available, diff here: + https://github.com/Julian/Virtue/compare/v2023.07.1...v2023.07.2 +- update to 2023.7.1: + no changelog available, diff here: + https://github.com/Julian/Virtue/compare/v2023.05.3...v2023.07.1 + +------------------------------------------------------------------- Old: ---- virtue-2023.5.3.tar.gz New: ---- virtue-2023.7.2.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-virtue.spec ++++++ --- /var/tmp/diff_new_pack.xgAQxq/_old 2023-07-14 15:35:44.761972706 +0200 +++ /var/tmp/diff_new_pack.xgAQxq/_new 2023-07-14 15:35:44.765972729 +0200 @@ -18,7 +18,7 @@ %{?sle15_python_module_pythons} Name: python-virtue -Version: 2023.5.3 +Version: 2023.7.2 Release: 0 Summary: After trial comes virtue. A test runner for good License: MIT ++++++ virtue-2023.5.3.tar.gz -> virtue-2023.7.2.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/virtue-2023.5.3/.github/FUNDING.yml new/virtue-2023.7.2/.github/FUNDING.yml --- old/virtue-2023.5.3/.github/FUNDING.yml 2020-02-02 01:00:00.000000000 +0100 +++ new/virtue-2023.7.2/.github/FUNDING.yml 2020-02-02 01:00:00.000000000 +0100 @@ -1,4 +1,3 @@ # These are supported funding model platforms github: "Julian" -patreon: "JulianWasTaken" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/virtue-2023.5.3/.pre-commit-config.yaml new/virtue-2023.7.2/.pre-commit-config.yaml --- old/virtue-2023.5.3/.pre-commit-config.yaml 2020-02-02 01:00:00.000000000 +0100 +++ new/virtue-2023.7.2/.pre-commit-config.yaml 2020-02-02 01:00:00.000000000 +0100 @@ -11,8 +11,8 @@ - id: mixed-line-ending args: [--fix, lf] - id: trailing-whitespace - - repo: https://github.com/charliermarsh/ruff-pre-commit - rev: "v0.0.270" + - repo: https://github.com/astral-sh/ruff-pre-commit + rev: "v0.0.277" hooks: - id: ruff - repo: https://github.com/PyCQA/isort @@ -26,6 +26,6 @@ id: black args: ["--line-length", "79"] - repo: https://github.com/pre-commit/mirrors-prettier - rev: "v3.0.0-alpha.9-for-vscode" + rev: "v3.0.0" hooks: - id: prettier diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/virtue-2023.5.3/PKG-INFO new/virtue-2023.7.2/PKG-INFO --- old/virtue-2023.5.3/PKG-INFO 2020-02-02 01:00:00.000000000 +0100 +++ new/virtue-2023.7.2/PKG-INFO 2020-02-02 01:00:00.000000000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: virtue -Version: 2023.5.3 +Version: 2023.7.2 Summary: After trial comes virtue. A test runner for good. Project-URL: Homepage, https://github.com/Julian/Virtue Project-URL: Documentation, https://virtue.readthedocs.io/ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/virtue-2023.5.3/noxfile.py new/virtue-2023.7.2/noxfile.py --- old/virtue-2023.5.3/noxfile.py 2020-02-02 01:00:00.000000000 +0100 +++ new/virtue-2023.7.2/noxfile.py 2020-02-02 01:00:00.000000000 +0100 @@ -1,4 +1,5 @@ from pathlib import Path +from tempfile import TemporaryDirectory import os import nox @@ -58,17 +59,10 @@ @session(tags=["build"]) def build(session): - session.install("build") - tmpdir = session.create_tmp() - session.run("python", "-m", "build", ROOT, "--outdir", tmpdir) - - -@session(tags=["style"]) -def readme(session): session.install("build", "twine") - tmpdir = session.create_tmp() - session.run("python", "-m", "build", ROOT, "--outdir", tmpdir) - session.run("python", "-m", "twine", "check", "--strict", tmpdir + "/*") + with TemporaryDirectory() as tmpdir: + session.run("python", "-m", "build", ROOT, "--outdir", tmpdir) + session.run("twine", "check", "--strict", tmpdir + "/*") @session() @@ -105,20 +99,21 @@ ) def docs(session, builder): session.install("-r", DOCS / "requirements.txt") - tmpdir = Path(session.create_tmp()) - argv = ["-n", "-T", "-W"] - if builder != "spelling": - argv += ["-q"] - session.run( - "python", - "-m", - "sphinx", - "-b", - builder, - DOCS, - tmpdir / builder, - *argv, - ) + with TemporaryDirectory() as tmpdir_str: + tmpdir = Path(tmpdir_str) + argv = ["-n", "-T", "-W"] + if builder != "spelling": + argv += ["-q"] + session.run( + "python", + "-m", + "sphinx", + "-b", + builder, + DOCS, + tmpdir / builder, + *argv, + ) @session(tags=["docs", "style"], name="docs(style)") diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/virtue-2023.5.3/virtue/__main__.py new/virtue-2023.7.2/virtue/__main__.py --- old/virtue-2023.5.3/virtue/__main__.py 2020-02-02 01:00:00.000000000 +0100 +++ new/virtue-2023.7.2/virtue/__main__.py 2020-02-02 01:00:00.000000000 +0100 @@ -3,4 +3,4 @@ """ from virtue import _cli -_cli.main() +_cli.main() # type: ignore[misc] diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/virtue-2023.5.3/virtue/_cli.py new/virtue-2023.7.2/virtue/_cli.py --- old/virtue-2023.5.3/virtue/_cli.py 2020-02-02 01:00:00.000000000 +0100 +++ new/virtue-2023.7.2/virtue/_cli.py 2020-02-02 01:00:00.000000000 +0100 @@ -40,7 +40,7 @@ return Reporter() -@click.command(context_settings=dict(help_option_names=["-h", "--help"])) +@click.command(context_settings=dict(help_option_names=["-h", "--help"])) # type: ignore[arg-type] # noqa: E501 @click.version_option(prog_name="virtue") @click.option( "--reporter",