commit python-nbformat for openSUSE:Factory
Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-nbformat for openSUSE:Factory checked in at 2024-04-02 16:37:39 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-nbformat (Old) and /work/SRC/openSUSE:Factory/.python-nbformat.new.1905 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "python-nbformat" Tue Apr 2 16:37:39 2024 rev:23 rq:1163581 version:5.10.3 Changes: -------- --- /work/SRC/openSUSE:Factory/python-nbformat/python-nbformat.changes 2023-10-27 22:28:50.888955741 +0200 +++ /work/SRC/openSUSE:Factory/.python-nbformat.new.1905/python-nbformat.changes 2024-04-02 16:37:44.782913861 +0200 @@ -1,0 +2,16 @@ +Fri Mar 29 18:51:43 UTC 2024 - Ben Greiner <code@bnavigator.de> + +- Update to 5.10.3 + * Revert PR #378 (Simplify NotebookNotary._data_dir_default) #397 + (@krassowski) +- Release 5.10.2 + * Restore usage of npm token #395 (@blink1073) +- Release 5.10.0 + * Maintenance and upkeep improvements + +------------------------------------------------------------------- +Thu Mar 28 12:37:01 UTC 2024 - ecsos <ecsos@opensuse.org> + +- Add %{?sle15_python_module_pythons} + +------------------------------------------------------------------- Old: ---- nbformat-5.9.2.tar.gz New: ---- nbformat-5.10.3.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-nbformat.spec ++++++ --- /var/tmp/diff_new_pack.ZZOqgx/_old 2024-04-02 16:37:45.710948060 +0200 +++ /var/tmp/diff_new_pack.ZZOqgx/_new 2024-04-02 16:37:45.714948208 +0200 @@ -1,7 +1,7 @@ # # spec file for package python-nbformat # -# Copyright (c) 2023 SUSE LLC +# Copyright (c) 2024 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,8 +17,9 @@ %bcond_without libalternatives +%{?sle15_python_module_pythons} Name: python-nbformat -Version: 5.9.2 +Version: 5.10.3 Release: 0 Summary: The Jupyter Notebook format License: BSD-3-Clause @@ -49,13 +50,13 @@ Requires: alts %else Requires(post): update-alternatives -Requires(postun):update-alternatives +Requires(postun): update-alternatives %endif # SECTION test requirements BuildRequires: %{python_module fastjsonschema} BuildRequires: %{python_module jsonschema > 2.6} BuildRequires: %{python_module jupyter_core} -BuildRequires: %{python_module pytest} +BuildRequires: %{python_module pytest >= 6} BuildRequires: %{python_module testpath} BuildRequires: %{python_module traitlets >= 5.1} BuildRequires: %{pythons} @@ -70,7 +71,7 @@ %prep %autosetup -p1 -n nbformat-%{version} -sed -i -e 's/--color=yes//' -e 's/\@\@\@/%{version}/' pyproject.toml +sed -i -e 's/"--color=yes", //' -e 's/\@\@\@/%{version}/' pyproject.toml %build %pyproject_wheel ++++++ nbformat-5.9.2.tar.gz -> nbformat-5.10.3.tar.gz ++++++ ++++ 3182 lines of diff (skipped) ++++++ no-hatch-nodejs-version.patch ++++++ --- /var/tmp/diff_new_pack.ZZOqgx/_old 2024-04-02 16:37:45.818952041 +0200 +++ /var/tmp/diff_new_pack.ZZOqgx/_new 2024-04-02 16:37:45.818952041 +0200 @@ -2,8 +2,10 @@ pyproject.toml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) ---- a/pyproject.toml -+++ b/pyproject.toml +Index: nbformat-5.10.3/pyproject.toml +=================================================================== +--- nbformat-5.10.3.orig/pyproject.toml ++++ nbformat-5.10.3/pyproject.toml @@ -1,10 +1,10 @@ [build-system] -requires = ["hatchling>=1.5", "hatch-nodejs-version"] @@ -17,7 +19,7 @@ description = "The Jupyter Notebook format" license = { file = "LICENSE" } keywords = ["Interactive", "Interpreter", "Shell", "Web"] -@@ -58,9 +58,6 @@ test = [ +@@ -62,9 +62,6 @@ test = [ [project.scripts] jupyter-trust = "nbformat.sign:TrustNotebookApp.launch_instance" ++++++ no-pep440.patch ++++++ --- /var/tmp/diff_new_pack.ZZOqgx/_old 2024-04-02 16:37:45.830952483 +0200 +++ /var/tmp/diff_new_pack.ZZOqgx/_new 2024-04-02 16:37:45.834952630 +0200 @@ -3,11 +3,11 @@ tests/test_api.py | 5 ----- 2 files changed, 1 insertion(+), 7 deletions(-) -Index: nbformat-5.9.2/pyproject.toml +Index: nbformat-5.10.3/pyproject.toml =================================================================== ---- nbformat-5.9.2.orig/pyproject.toml -+++ nbformat-5.9.2/pyproject.toml -@@ -52,7 +52,6 @@ test = [ +--- nbformat-5.10.3.orig/pyproject.toml ++++ nbformat-5.10.3/pyproject.toml +@@ -56,7 +56,6 @@ test = [ "testpath", "pytest", "pre-commit", @@ -15,19 +15,19 @@ ] [project.scripts] -Index: nbformat-5.9.2/tests/test_api.py +Index: nbformat-5.10.3/tests/test_api.py =================================================================== ---- nbformat-5.9.2.orig/tests/test_api.py -+++ nbformat-5.9.2/tests/test_api.py -@@ -10,7 +10,6 @@ from tempfile import TemporaryDirectory - from typing import Any, Dict +--- nbformat-5.10.3.orig/tests/test_api.py ++++ nbformat-5.10.3/tests/test_api.py +@@ -11,7 +11,6 @@ from tempfile import TemporaryDirectory + from typing import Any from jsonschema import ValidationError -from pep440 import is_canonical from nbformat import __version__ as nbf_version from nbformat import current_nbformat, read, write, writes -@@ -20,10 +19,6 @@ from nbformat.validator import isvalid +@@ -21,10 +20,6 @@ from nbformat.validator import isvalid from .base import TestsBase
participants (1)
-
Source-Sync