Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-comm for openSUSE:Factory checked in at 2023-08-07 15:28:54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-comm (Old) and /work/SRC/openSUSE:Factory/.python-comm.new.22712 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-comm" Mon Aug 7 15:28:54 2023 rev:3 rq:1102580 version:0.1.4 Changes: -------- --- /work/SRC/openSUSE:Factory/python-comm/python-comm.changes 2023-04-04 21:27:34.787631513 +0200 +++ /work/SRC/openSUSE:Factory/.python-comm.new.22712/python-comm.changes 2023-08-07 15:28:58.316269798 +0200 @@ -1,0 +2,11 @@ +Sat Aug 5 17:11:20 UTC 2023 - Arun Persaud <a...@gmx.de> + +- specfile: + * lowered traitlets dependency to >=4 + +- update to version 0.1.4: + * Improvements + + Loosen dependency on traitlet so it is available in python 3.6 + #16 (@vincent-grosbois) + +------------------------------------------------------------------- Old: ---- comm-0.1.3-gh.tar.gz New: ---- comm-0.1.4-gh.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-comm.spec ++++++ --- /var/tmp/diff_new_pack.SvHzG5/_old 2023-08-07 15:28:58.976273895 +0200 +++ /var/tmp/diff_new_pack.SvHzG5/_new 2023-08-07 15:28:58.976273895 +0200 @@ -17,7 +17,7 @@ Name: python-comm -Version: 0.1.3 +Version: 0.1.4 Release: 0 Summary: Jupyter Python Comm implementation License: BSD-3-Clause @@ -27,10 +27,10 @@ BuildRequires: %{python_module hatchling >= 1.10} BuildRequires: %{python_module pip} BuildRequires: %{python_module pytest} -BuildRequires: %{python_module traitlets >= 5.3} +BuildRequires: %{python_module traitlets >= 4} BuildRequires: fdupes BuildRequires: python-rpm-macros -Requires: python-traitlets >= 5.3 +Requires: python-traitlets >= 4 BuildArch: noarch %python_subpackages ++++++ comm-0.1.3-gh.tar.gz -> comm-0.1.4-gh.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/comm-0.1.3/CHANGELOG.md new/comm-0.1.4/CHANGELOG.md --- old/comm-0.1.3/CHANGELOG.md 2023-03-22 09:20:09.000000000 +0100 +++ new/comm-0.1.4/CHANGELOG.md 2023-08-02 15:38:19.000000000 +0200 @@ -4,6 +4,22 @@ <!-- <START NEW CHANGELOG ENTRY> --> +## 0.1.4 + +([Full Changelog](https://github.com/ipython/comm/compare/v0.1.3...136c099e4fb1cc83040661796ad7ea349af04be8)) + +### Improvements + +- Loosen dependency on traitlet so it is available in python 3.6 [#16](https://github.com/ipython/comm/pull/16) ([@vincent-grosbois](https://github.com/vincent-grosbois)) + +### Contributors to this release + +([GitHub contributors page for this release](https://github.com/ipython/comm/graphs/contributors?from=2023-03-22&to=2023-08-02&type=c)) + +[@martinRenou](https://github.com/search?q=repo%3Aipython%2Fcomm+involves%3AmartinRenou+updated%3A2023-03-22..2023-08-02&type=Issues) | [@vincent-grosbois](https://github.com/search?q=repo%3Aipython%2Fcomm+involves%3Avincent-grosbois+updated%3A2023-03-22..2023-08-02&type=Issues) + +<!-- <END NEW CHANGELOG ENTRY> --> + ## 0.1.3 ([Full Changelog](https://github.com/ipython/comm/compare/0.1.2...309b8295ca950a9ca9bdc0daa796215d72a7cb09)) @@ -22,8 +38,6 @@ [@blink1073](https://github.com/search?q=repo%3Aipython%2Fcomm+involves%3Ablink1073+updated%3A2022-12-08..2023-03-22&type=Issues) | [@maartenbreddels](https://github.com/search?q=repo%3Aipython%2Fcomm+involves%3Amaartenbreddels+updated%3A2022-12-08..2023-03-22&type=Issues) -<!-- <END NEW CHANGELOG ENTRY> --> - ## 0.1.2 Initial release diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/comm-0.1.3/comm/__init__.py new/comm-0.1.4/comm/__init__.py --- old/comm-0.1.3/comm/__init__.py 2023-03-22 09:20:09.000000000 +0100 +++ new/comm-0.1.4/comm/__init__.py 2023-08-02 15:38:19.000000000 +0200 @@ -10,7 +10,7 @@ from .base_comm import BaseComm, CommManager -__version__ = "0.1.3" +__version__ = "0.1.4" __all__ = [ "create_comm", "get_comm_manager", diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/comm-0.1.3/pyproject.toml new/comm-0.1.4/pyproject.toml --- old/comm-0.1.3/pyproject.toml 2023-03-22 09:20:09.000000000 +0100 +++ new/comm-0.1.4/pyproject.toml 2023-08-02 15:38:19.000000000 +0200 @@ -29,7 +29,7 @@ "Programming Language :: Python :: 3.11", ] dependencies = [ - "traitlets>=5.3", + "traitlets>=4", ] [project.optional-dependencies]