Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-neovim for openSUSE:Factory 
checked in at 2021-03-18 22:55:21
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-neovim (Old)
 and      /work/SRC/openSUSE:Factory/.python-neovim.new.2401 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-neovim"

Thu Mar 18 22:55:21 2021 rev:17 rq:879884 version:0.4.3

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-neovim/python-neovim.changes      
2020-11-05 21:56:38.463951997 +0100
+++ /work/SRC/openSUSE:Factory/.python-neovim.new.2401/python-neovim.changes    
2021-03-18 22:55:23.579560163 +0100
@@ -1,0 +2,6 @@
+Thu Mar 18 10:37:00 UTC 2021 - Matej Cepl <[email protected]>
+
+- Update to 0.4.3:
+  - Detect encoding correctly on non-standard locales
+
+-------------------------------------------------------------------

Old:
----
  pynvim-0.4.2.tar.gz

New:
----
  pynvim-0.4.3.tar.gz

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

Other differences:
------------------
++++++ python-neovim.spec ++++++
--- /var/tmp/diff_new_pack.uumogx/_old  2021-03-18 22:55:24.099560725 +0100
+++ /var/tmp/diff_new_pack.uumogx/_new  2021-03-18 22:55:24.099560725 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-neovim
 #
-# Copyright (c) 2020 SUSE LLC
+# Copyright (c) 2021 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -22,7 +22,7 @@
 %define python_module() python34-%{**}
 %endif
 Name:           python-neovim
-Version:        0.4.2
+Version:        0.4.3
 Release:        0
 Summary:        Python client to Neovim
 License:        Apache-2.0
@@ -33,6 +33,11 @@
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
+# SECTION test requirements
+BuildRequires:  %{python_module msgpack}
+BuildRequires:  %{python_module greenlet}
+BuildRequires:  neovim
+# /SECTION
 Requires:       neovim >= 0.1.6
 Requires:       python-greenlet
 Requires:       python-msgpack-python
@@ -53,6 +58,9 @@
 %python_install
 %python_expand %fdupes %{buildroot}%{$python_sitelib}
 
+%check
+%pytest
+
 %files %{python_files}
 %license LICENSE
 %doc README.md

++++++ pynvim-0.4.2.tar.gz -> pynvim-0.4.3.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pynvim-0.4.2/pynvim/plugin/script_host.py 
new/pynvim-0.4.3/pynvim/plugin/script_host.py
--- old/pynvim-0.4.2/pynvim/plugin/script_host.py       2020-09-15 
14:11:11.000000000 +0200
+++ new/pynvim-0.4.3/pynvim/plugin/script_host.py       2021-02-25 
16:18:50.000000000 +0100
@@ -100,7 +100,7 @@
     def python_execute_file(self, file_path, range_start, range_stop):
         """Handle the `pyfile` ex command."""
         self._set_current_range(range_start, range_stop)
-        with open(file_path) as f:
+        with open(file_path, 'rb') as f:
             script = compile(f.read(), file_path, 'exec')
             try:
                 exec(script, self.module.__dict__)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pynvim-0.4.2/pynvim/util.py 
new/pynvim-0.4.3/pynvim/util.py
--- old/pynvim-0.4.2/pynvim/util.py     2020-09-15 14:11:11.000000000 +0200
+++ new/pynvim-0.4.3/pynvim/util.py     2021-02-25 16:18:50.000000000 +0100
@@ -39,4 +39,4 @@
     return (name, VERSION.__dict__, type_, method_spec, attributes)
 
 
-VERSION = Version(major=0, minor=4, patch=2, prerelease='')
+VERSION = Version(major=0, minor=4, patch=3, prerelease='')
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pynvim-0.4.2/setup.py new/pynvim-0.4.3/setup.py
--- old/pynvim-0.4.2/setup.py   2020-09-15 14:11:11.000000000 +0200
+++ new/pynvim-0.4.3/setup.py   2021-02-25 16:18:50.000000000 +0100
@@ -35,10 +35,10 @@
     install_requires.append('greenlet')
 
 setup(name='pynvim',
-      version='0.4.2',
+      version='0.4.3',
       description='Python client to neovim',
       url='http://github.com/neovim/pynvim',
-      download_url='https://github.com/neovim/pynvim/archive/0.4.2.tar.gz',
+      download_url='https://github.com/neovim/pynvim/archive/0.4.3.tar.gz',
       author='Thiago de Arruda',
       author_email='[email protected]',
       license='Apache',

Reply via email to