Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-notebook-shim for openSUSE:Factory checked in at 2024-03-08 18:10:44 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-notebook-shim (Old) and /work/SRC/openSUSE:Factory/.python-notebook-shim.new.1770 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-notebook-shim" Fri Mar 8 18:10:44 2024 rev:6 rq:1156366 version:0.2.4 Changes: -------- --- /work/SRC/openSUSE:Factory/python-notebook-shim/python-notebook-shim.changes 2023-08-18 19:29:00.711386133 +0200 +++ /work/SRC/openSUSE:Factory/.python-notebook-shim.new.1770/python-notebook-shim.changes 2024-03-08 18:10:54.581955474 +0100 @@ -1,0 +2,7 @@ +Fri Mar 8 13:26:06 UTC 2024 - Ben Greiner <c...@bnavigator.de> + +- Update to 0.2.4 + * Fix extension discovery warning #31 (@Zsailer) +- Stop testing on python39: no pytest-jupyter anymore + +------------------------------------------------------------------- Old: ---- notebook_shim-0.2.3.tar.gz New: ---- notebook_shim-0.2.4.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-notebook-shim.spec ++++++ --- /var/tmp/diff_new_pack.ZooQvj/_old 2024-03-08 18:10:55.125975465 +0100 +++ /var/tmp/diff_new_pack.ZooQvj/_new 2024-03-08 18:10:55.125975465 +0100 @@ -1,7 +1,7 @@ # # spec file for package python-notebook-shim # -# 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,7 +17,7 @@ Name: python-notebook-shim -Version: 0.2.3 +Version: 0.2.4 Release: 0 Summary: A shim layer for notebook traits and config License: BSD-3-Clause @@ -35,7 +35,7 @@ BuildArch: noarch BuildRequires: %{python_module jupyter_server >= 1.8 with %python-jupyter_server < 3} BuildRequires: %{python_module pytest-console-scripts} -BuildRequires: %{python_module pytest-jupyter} +BuildRequires: %{python_module pytest-jupyter if %python-base >= 3.10} BuildRequires: %{python_module pytest-tornasync} BuildRequires: %{python_module pytest} %python_subpackages @@ -68,7 +68,13 @@ %python_expand %fdupes %{buildroot}%{$python_sitelib} %check -%pytest notebook_shim +export PYTHONDONTWRITEBYTECODE=1 +%{python_expand # don't test anything on python39: no pytest-jupyter anymore +export PYTHONPATH=%{buildroot}%{$python_sitelib} +if [ ${python_flavor} != "python39" ]; then +$python -m pytest -v notebook_shim +fi +} %files %{python_files} %license LICENSE ++++++ notebook_shim-0.2.3.tar.gz -> notebook_shim-0.2.4.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/notebook_shim-0.2.3/CHANGELOG.md new/notebook_shim-0.2.4/CHANGELOG.md --- old/notebook_shim-0.2.3/CHANGELOG.md 2020-02-02 01:00:00.000000000 +0100 +++ new/notebook_shim-0.2.4/CHANGELOG.md 2020-02-02 01:00:00.000000000 +0100 @@ -2,6 +2,22 @@ <!-- <START NEW CHANGELOG ENTRY> --> +## 0.2.4 + +([Full Changelog](https://github.com/jupyter/notebook_shim/compare/v0.2.3...eb748573d2af505c6846fbf2597ec56447c0d6e8)) + +### Maintenance and upkeep improvements + +- Fix extension discovery warning [#31](https://github.com/jupyter/notebook_shim/pull/31) ([@Zsailer](https://github.com/Zsailer)) + +### Contributors to this release + +([GitHub contributors page for this release](https://github.com/jupyter/notebook_shim/graphs/contributors?from=2023-04-24&to=2024-02-14&type=c)) + +[@Zsailer](https://github.com/search?q=repo%3Ajupyter%2Fnotebook_shim+involves%3AZsailer+updated%3A2023-04-24..2024-02-14&type=Issues) + +<!-- <END NEW CHANGELOG ENTRY> --> + ## 0.2.3 ([Full Changelog](https://github.com/jupyter/notebook_shim/compare/v0.2.2...bb84e6475a757b6299cb07ec3ce027a8c57d052e)) @@ -16,8 +32,6 @@ [@echarles](https://github.com/search?q=repo%3Ajupyter%2Fnotebook_shim+involves%3Aecharles+updated%3A2022-11-03..2023-04-24&type=Issues) | [@Zsailer](https://github.com/search?q=repo%3Ajupyter%2Fnotebook_shim+involves%3AZsailer+updated%3A2022-11-03..2023-04-24&type=Issues) -<!-- <END NEW CHANGELOG ENTRY> --> - ## 0.2.2 ([Full Changelog](https://github.com/jupyter/notebook_shim/compare/v0.2.0...e1f1219888d9bfa69fc0e1f130f6f1bcf3825fcb)) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/notebook_shim-0.2.3/PKG-INFO new/notebook_shim-0.2.4/PKG-INFO --- old/notebook_shim-0.2.3/PKG-INFO 2020-02-02 01:00:00.000000000 +0100 +++ new/notebook_shim-0.2.4/PKG-INFO 2020-02-02 01:00:00.000000000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: notebook_shim -Version: 0.2.3 +Version: 0.2.4 Summary: A shim layer for notebook traits and config Author-email: Jupyter Development Team <jupy...@googlegroups.com> License: BSD 3-Clause License diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/notebook_shim-0.2.3/notebook_shim/__init__.py new/notebook_shim-0.2.4/notebook_shim/__init__.py --- old/notebook_shim-0.2.3/notebook_shim/__init__.py 2020-02-02 01:00:00.000000000 +0100 +++ new/notebook_shim-0.2.4/notebook_shim/__init__.py 2020-02-02 01:00:00.000000000 +0100 @@ -1,4 +1,4 @@ -def _jupyter_server_extension_paths(): +def _jupyter_server_extension_points(): return [ { 'module': 'notebook_shim.nbserver', diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/notebook_shim-0.2.3/notebook_shim/_version.py new/notebook_shim-0.2.4/notebook_shim/_version.py --- old/notebook_shim-0.2.3/notebook_shim/_version.py 2020-02-02 01:00:00.000000000 +0100 +++ new/notebook_shim-0.2.4/notebook_shim/_version.py 2020-02-02 01:00:00.000000000 +0100 @@ -1,2 +1,2 @@ -version_info = (0, 2, 3, "", "") -__version__ = "0.2.3" +version_info = (0, 2, 4, "", "") +__version__ = "0.2.4" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/notebook_shim-0.2.3/pyproject.toml new/notebook_shim-0.2.4/pyproject.toml --- old/notebook_shim-0.2.3/pyproject.toml 2020-02-02 01:00:00.000000000 +0100 +++ new/notebook_shim-0.2.4/pyproject.toml 2020-02-02 01:00:00.000000000 +0100 @@ -45,11 +45,12 @@ + [tool.hatch.version] path = "notebook_shim/_version.py" [tool.tbump.version] -current = "0.2.3" +current = "0.2.4" regex = ''' (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+) ((?P<channel>a|b|rc|.dev)(?P<release>\d+))?