Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-jsonschema-specifications for openSUSE:Factory checked in at 2023-06-26 18:16:33 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-jsonschema-specifications (Old) and /work/SRC/openSUSE:Factory/.python-jsonschema-specifications.new.15902 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-jsonschema-specifications" Mon Jun 26 18:16:33 2023 rev:5 rq:1095371 version:2023.6.1 Changes: -------- --- /work/SRC/openSUSE:Factory/python-jsonschema-specifications/python-jsonschema-specifications.changes 2023-05-31 21:55:22.709317838 +0200 +++ /work/SRC/openSUSE:Factory/.python-jsonschema-specifications.new.15902/python-jsonschema-specifications.changes 2023-06-26 18:16:52.718679552 +0200 @@ -1,0 +2,11 @@ +Mon Jun 26 05:02:12 UTC 2023 - Johannes Kastl <ka...@b1-systems.de> + +- update to 2023.6.1: + full diff available at + https://github.com/python-jsonschema/jsonschema-specifications/ + compare/v2023.05.2...v2023.06.1 + * bump doc requirements + * Enable PYTHONWARNDEFAULTENCODING to catch an encoding + mistake. + +------------------------------------------------------------------- Old: ---- jsonschema_specifications-2023.5.2.tar.gz New: ---- jsonschema_specifications-2023.6.1.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-jsonschema-specifications.spec ++++++ --- /var/tmp/diff_new_pack.Sy5go9/_old 2023-06-26 18:16:53.478682928 +0200 +++ /var/tmp/diff_new_pack.Sy5go9/_new 2023-06-26 18:16:53.482682946 +0200 @@ -18,7 +18,7 @@ %{?sle15_python_module_pythons} Name: python-jsonschema-specifications -Version: 2023.5.2 +Version: 2023.6.1 Release: 0 Summary: The JSON Schema meta-schemas and vocabularies, exposed as a Registry License: MIT ++++++ jsonschema_specifications-2023.5.2.tar.gz -> jsonschema_specifications-2023.6.1.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/jsonschema_specifications-2023.5.2/PKG-INFO new/jsonschema_specifications-2023.6.1/PKG-INFO --- old/jsonschema_specifications-2023.5.2/PKG-INFO 2020-02-02 01:00:00.000000000 +0100 +++ new/jsonschema_specifications-2023.6.1/PKG-INFO 2020-02-02 01:00:00.000000000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: jsonschema-specifications -Version: 2023.5.2 +Version: 2023.6.1 Summary: The JSON Schema meta-schemas and vocabularies, exposed as a Registry Project-URL: Documentation, https://jsonschema-specifications.readthedocs.io/ Project-URL: Homepage, https://github.com/python-jsonschema/jsonschema-specifications diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/jsonschema_specifications-2023.5.2/docs/requirements.txt new/jsonschema_specifications-2023.6.1/docs/requirements.txt --- old/jsonschema_specifications-2023.5.2/docs/requirements.txt 2020-02-02 01:00:00.000000000 +0100 +++ new/jsonschema_specifications-2023.6.1/docs/requirements.txt 2020-02-02 01:00:00.000000000 +0100 @@ -20,11 +20,11 @@ # via matplotlib cycler==0.11.0 # via matplotlib -docutils==0.19 +docutils==0.20.1 # via sphinx fonttools==4.39.4 # via matplotlib -furo==2023.3.27 +furo==2023.5.20 # via -r docs/requirements.in idna==3.4 # via requests @@ -63,9 +63,9 @@ # via matplotlib python-dateutil==2.8.2 # via matplotlib -referencing==0.28.1 +referencing==0.28.5 # via jsonschema-specifications -requests==2.30.0 +requests==2.31.0 # via sphinx rpds-py==0.7.1 # via referencing @@ -75,7 +75,7 @@ # via sphinx soupsieve==2.4.1 # via beautifulsoup4 -sphinx==6.2.1 +sphinx==7.0.1 # via # -r docs/requirements.in # furo diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/jsonschema_specifications-2023.5.2/jsonschema_specifications/_core.py new/jsonschema_specifications-2023.6.1/jsonschema_specifications/_core.py --- old/jsonschema_specifications-2023.5.2/jsonschema_specifications/_core.py 2020-02-02 01:00:00.000000000 +0100 +++ new/jsonschema_specifications-2023.6.1/jsonschema_specifications/_core.py 2020-02-02 01:00:00.000000000 +0100 @@ -28,5 +28,5 @@ for child in version.iterdir(): children = [child] if child.is_file() else child.iterdir() for path in children: - contents = json.loads(path.read_text()) + contents = json.loads(path.read_text(encoding="utf-8")) yield Resource.from_contents(contents) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/jsonschema_specifications-2023.5.2/noxfile.py new/jsonschema_specifications-2023.6.1/noxfile.py --- old/jsonschema_specifications-2023.5.2/noxfile.py 2020-02-02 01:00:00.000000000 +0100 +++ new/jsonschema_specifications-2023.6.1/noxfile.py 2020-02-02 01:00:00.000000000 +0100 @@ -1,4 +1,5 @@ from pathlib import Path +import os import nox @@ -23,7 +24,8 @@ @session(python=["3.8", "3.9", "3.10", "3.11", "pypy3"]) def tests(session): session.install("pytest", ROOT) - session.run("pytest", "--verbosity=3") + env = dict(os.environ, PYTHONWARNDEFAULTENCODING="1") + session.run("pytest", "--verbosity=3", "--pythonwarnings=error", env=env) @session()