Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-nbclient for openSUSE:Factory checked in at 2022-09-10 20:17:23 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-nbclient (Old) and /work/SRC/openSUSE:Factory/.python-nbclient.new.2083 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-nbclient" Sat Sep 10 20:17:23 2022 rev:24 rq:1002372 version:0.6.8 Changes: -------- --- /work/SRC/openSUSE:Factory/python-nbclient/python-nbclient.changes 2022-08-29 09:43:09.079824614 +0200 +++ /work/SRC/openSUSE:Factory/.python-nbclient.new.2083/python-nbclient.changes 2022-09-10 20:17:46.652903980 +0200 @@ -1,0 +2,7 @@ +Fri Sep 9 16:47:56 UTC 2022 - Arun Persaud <a...@gmx.de> + +- update to version 0.6.8: + * Merged PRs + + Fix tests compatibility with IPython 8.5.0 #251 (@frenzymadness) + +------------------------------------------------------------------- Old: ---- nbclient-0.6.7.tar.gz New: ---- nbclient-0.6.8.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-nbclient.spec ++++++ --- /var/tmp/diff_new_pack.6NaJyR/_old 2022-09-10 20:17:47.848907055 +0200 +++ /var/tmp/diff_new_pack.6NaJyR/_new 2022-09-10 20:17:47.856907075 +0200 @@ -30,7 +30,7 @@ %bcond_with libalternatives %endif Name: python-nbclient%{psuffix} -Version: 0.6.7 +Version: 0.6.8 Release: 0 Summary: A client library for executing notebooks License: BSD-3-Clause ++++++ nbclient-0.6.7.tar.gz -> nbclient-0.6.8.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/nbclient-0.6.7/CHANGELOG.md new/nbclient-0.6.8/CHANGELOG.md --- old/nbclient-0.6.7/CHANGELOG.md 2022-08-23 10:19:18.000000000 +0200 +++ new/nbclient-0.6.8/CHANGELOG.md 2022-09-09 14:35:23.000000000 +0200 @@ -2,6 +2,22 @@ <!-- <START NEW CHANGELOG ENTRY> --> +## 0.6.8 + +([Full Changelog](https://github.com/jupyter/nbclient/compare/v0.6.7...f7d72b2c6937fc30add18b7413f89b691d1710be)) + +### Merged PRs + +- Fix tests compatibility with IPython 8.5.0 [#251](https://github.com/jupyter/nbclient/pull/251) ([@frenzymadness](https://github.com/frenzymadness)) + +### Contributors to this release + +([GitHub contributors page for this release](https://github.com/jupyter/nbclient/graphs/contributors?from=2022-08-23&to=2022-09-09&type=c)) + +[@davidbrochart](https://github.com/search?q=repo%3Ajupyter%2Fnbclient+involves%3Adavidbrochart+updated%3A2022-08-23..2022-09-09&type=Issues) | [@frenzymadness](https://github.com/search?q=repo%3Ajupyter%2Fnbclient+involves%3Afrenzymadness+updated%3A2022-08-23..2022-09-09&type=Issues) + +<!-- <END NEW CHANGELOG ENTRY> --> + ## 0.6.7 ([Full Changelog](https://github.com/jupyter/nbclient/compare/v0.6.6...979fb908dc133cc80a698c74d9b3d9d8af6c7bde)) @@ -17,8 +33,6 @@ [@frenzymadness](https://github.com/search?q=repo%3Ajupyter%2Fnbclient+involves%3Afrenzymadness+updated%3A2022-07-01..2022-08-23&type=Issues) | [@pre-commit-ci](https://github.com/search?q=repo%3Ajupyter%2Fnbclient+involves%3Apre-commit-ci+updated%3A2022-07-01..2022-08-23&type=Issues) -<!-- <END NEW CHANGELOG ENTRY> --> - ## 0.6.6 ([Full Changelog](https://github.com/jupyter/nbclient/compare/v0.6.5...b4a7cebf0238d4fbe814e19afbee8df3f610e80d)) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/nbclient-0.6.7/PKG-INFO new/nbclient-0.6.8/PKG-INFO --- old/nbclient-0.6.7/PKG-INFO 2022-08-23 10:19:28.246266000 +0200 +++ new/nbclient-0.6.8/PKG-INFO 2022-09-09 14:35:34.628271600 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: nbclient -Version: 0.6.7 +Version: 0.6.8 Summary: A client library for executing notebooks. Formerly nbconvert's ExecutePreprocessor. Home-page: https://jupyter.org Author: Jupyter Development Team diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/nbclient-0.6.7/nbclient/_version.py new/nbclient-0.6.8/nbclient/_version.py --- old/nbclient-0.6.7/nbclient/_version.py 2022-08-23 10:19:19.000000000 +0200 +++ new/nbclient-0.6.8/nbclient/_version.py 2022-09-09 14:35:24.000000000 +0200 @@ -1,7 +1,7 @@ import re from typing import List, Union -__version__ = "0.6.7" +__version__ = "0.6.8" # Build up version_info tuple for backwards compatibility pattern = r'(?P<major>\d+).(?P<minor>\d+).(?P<patch>\d+)(?P<rest>.*)' diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/nbclient-0.6.7/nbclient/tests/test_client.py new/nbclient-0.6.8/nbclient/tests/test_client.py --- old/nbclient-0.6.7/nbclient/tests/test_client.py 2022-08-23 10:19:18.000000000 +0200 +++ new/nbclient-0.6.8/nbclient/tests/test_client.py 2022-09-09 14:35:23.000000000 +0200 @@ -34,7 +34,7 @@ # Tracebacks look different in IPython 8, # see: https://github.com/ipython/ipython/blob/master/docs/source/whatsnew/version8.rst#traceback-improvements # noqa ipython8_input_pat = re.compile( - r'(Input In \[\d+\]|<IPY-INPUT>), in (<module>|<cell line: \d>\(\))' + r'((Cell|Input) In \[\d+\]|<IPY-INPUT>), (in )?(line \d|<module>|<cell line: \d>\(\))' ) hook_methods = [ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/nbclient-0.6.7/nbclient.egg-info/PKG-INFO new/nbclient-0.6.8/nbclient.egg-info/PKG-INFO --- old/nbclient-0.6.7/nbclient.egg-info/PKG-INFO 2022-08-23 10:19:28.000000000 +0200 +++ new/nbclient-0.6.8/nbclient.egg-info/PKG-INFO 2022-09-09 14:35:34.000000000 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: nbclient -Version: 0.6.7 +Version: 0.6.8 Summary: A client library for executing notebooks. Formerly nbconvert's ExecutePreprocessor. Home-page: https://jupyter.org Author: Jupyter Development Team diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/nbclient-0.6.7/pyproject.toml new/nbclient-0.6.8/pyproject.toml --- old/nbclient-0.6.7/pyproject.toml 2022-08-23 10:19:19.000000000 +0200 +++ new/nbclient-0.6.8/pyproject.toml 2022-09-09 14:35:24.000000000 +0200 @@ -70,7 +70,7 @@ ignore = [".mailmap", "*.yml", "*.yaml"] [tool.tbump.version] -current = "0.6.7" +current = "0.6.8" regex = ''' (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+) ((?P<channel>a|b|rc|.dev)(?P<release>\d+))?