Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-ipyvue for openSUSE:Factory 
checked in at 2023-07-04 15:21:59
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-ipyvue (Old)
 and      /work/SRC/openSUSE:Factory/.python-ipyvue.new.23466 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-ipyvue"

Tue Jul  4 15:21:59 2023 rev:5 rq:1096302 version:1.9.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-ipyvue/python-ipyvue.changes      
2023-06-04 00:12:34.417523639 +0200
+++ /work/SRC/openSUSE:Factory/.python-ipyvue.new.23466/python-ipyvue.changes   
2023-07-04 15:22:22.430203428 +0200
@@ -1,0 +2,7 @@
+Sat Jul  1 16:32:31 UTC 2023 - Ben Greiner <[email protected]>
+
+- Update to 1.9.2
+  * no upstream release notes
+  * fixes an encoding error
+
+-------------------------------------------------------------------

Old:
----
  ipyvue-1.9.1-gh.tar.gz
  ipyvue-1.9.1.tar.gz

New:
----
  ipyvue-1.9.2-gh.tar.gz
  ipyvue-1.9.2.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python-ipyvue.spec ++++++
--- /var/tmp/diff_new_pack.fRgncV/_old  2023-07-04 15:22:23.146207731 +0200
+++ /var/tmp/diff_new_pack.fRgncV/_new  2023-07-04 15:22:23.154207780 +0200
@@ -16,10 +16,10 @@
 #
 
 
-%define anypython3dist python3dist
-%define python3dist_version 1.9.1
+# This is important for versions ending in .0
+%define python3dist_version 1.9.2
 Name:           python-ipyvue
-Version:        1.9.1
+Version:        1.9.2
 Release:        0
 Summary:        Jupyter widgets base for Vue libraries
 License:        MIT
@@ -49,7 +49,7 @@
 %package     -n jupyter-ipyvue-nbextension
 Summary:        Jupyter widgets base for Vue libraries - nbextension
 Requires:       jupyter-notebook
-Requires:       %{anypython3dist}(ipyvue) = %{python3dist_version}
+Requires:       python3dist(ipyvue) = %{python3dist_version}
 
 %description -n jupyter-ipyvue-nbextension
 Jupyter widgets base for Vue libraries
@@ -59,7 +59,7 @@
 %package     -n jupyter-jupyterlab-ipyvue
 Summary:        Jupyter widgets base for Vue libraries - labextension
 Requires:       jupyter-jupyterlab
-Requires:       %{anypython3dist}(ipyvue) = %{python3dist_version}
+Requires:       python3dist(ipyvue) = %{python3dist_version}
 
 %description -n jupyter-jupyterlab-ipyvue
 Jupyter widgets base for Vue libraries

++++++ ipyvue-1.9.1-gh.tar.gz -> ipyvue-1.9.2-gh.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipyvue-1.9.1/.bumpversion.cfg 
new/ipyvue-1.9.2/.bumpversion.cfg
--- old/ipyvue-1.9.1/.bumpversion.cfg   2023-05-24 15:13:28.000000000 +0200
+++ new/ipyvue-1.9.2/.bumpversion.cfg   2023-06-16 14:52:37.000000000 +0200
@@ -1,5 +1,5 @@
 [bumpversion]
-current_version = 1.9.1
+current_version = 1.9.2
 commit = True
 tag = True
 parse = 
(?P<major>\d+)(\.(?P<minor>\d+))(\.(?P<patch>\d+))((?P<release>.)(?P<build>\d+))?
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipyvue-1.9.1/.github/workflows/unit.yml 
new/ipyvue-1.9.2/.github/workflows/unit.yml
--- old/ipyvue-1.9.1/.github/workflows/unit.yml 2023-05-24 15:13:28.000000000 
+0200
+++ new/ipyvue-1.9.2/.github/workflows/unit.yml 2023-06-16 14:52:37.000000000 
+0200
@@ -17,7 +17,7 @@
       - name: Install dependencies
         run: pip install -r .github/requirements.txt
       - name: Run black
-        run: black .
+        run: black . --check
       - name: Setup flake8 annotations
         uses: rbialon/flake8-annotations@v1
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipyvue-1.9.1/ipyvue/Template.py 
new/ipyvue-1.9.2/ipyvue/Template.py
--- old/ipyvue-1.9.1/ipyvue/Template.py 2023-05-24 15:13:28.000000000 +0200
+++ new/ipyvue-1.9.2/ipyvue/Template.py 2023-06-16 14:52:37.000000000 +0200
@@ -44,11 +44,11 @@
 def get_template(abs_path):
     abs_path = os.path.normpath(abs_path)
     if abs_path not in template_registry:
-        with open(abs_path) as f:
+        with open(abs_path, encoding="utf-8") as f:
             tw = Template(template=f.read())
             template_registry[abs_path] = tw
     else:
-        with open(abs_path) as f:
+        with open(abs_path, encoding="utf-8") as f:
             template_registry[abs_path].template = f.read()
     return template_registry[abs_path]
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipyvue-1.9.1/ipyvue/VueWidget.py 
new/ipyvue-1.9.2/ipyvue/VueWidget.py
--- old/ipyvue-1.9.1/ipyvue/VueWidget.py        2023-05-24 15:13:28.000000000 
+0200
+++ new/ipyvue-1.9.2/ipyvue/VueWidget.py        2023-06-16 14:52:37.000000000 
+0200
@@ -103,7 +103,9 @@
         """Manually trigger an event handler on the Python side."""
         # note that a click event will trigger click.stop if that particular
         # event+modifier is registered.
-        event_match = [k for k in self._event_handlers_map.keys() if 
k.startswith(event)]
+        event_match = [
+            k for k in self._event_handlers_map.keys() if k.startswith(event)
+        ]
         if not event_match:
             raise ValueError(f"'{event}' not found in widget {self}")
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipyvue-1.9.1/ipyvue/_version.py 
new/ipyvue-1.9.2/ipyvue/_version.py
--- old/ipyvue-1.9.1/ipyvue/_version.py 2023-05-24 15:13:28.000000000 +0200
+++ new/ipyvue-1.9.2/ipyvue/_version.py 2023-06-16 14:52:37.000000000 +0200
@@ -1,2 +1,2 @@
-__version__ = "1.9.1"
+__version__ = "1.9.2"
 semver = "^" + __version__
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipyvue-1.9.1/js/package.json 
new/ipyvue-1.9.2/js/package.json
--- old/ipyvue-1.9.1/js/package.json    2023-05-24 15:13:28.000000000 +0200
+++ new/ipyvue-1.9.2/js/package.json    2023-06-16 14:52:37.000000000 +0200
@@ -1,6 +1,6 @@
 {
   "name": "jupyter-vue",
-  "version": "1.9.1",
+  "version": "1.9.2",
   "description": "Jupyter widgets base for Vue libraries",
   "license": "MIT",
   "author": "Mario Buikhuizen, Maarten Breddels",

++++++ ipyvue-1.9.1-gh.tar.gz -> ipyvue-1.9.2.tar.gz ++++++
++++ 21394 lines of diff (skipped)

Reply via email to