Hello community,

here is the log from the commit of package python-nbval for openSUSE:Factory 
checked in at 2020-01-16 18:21:04
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-nbval (Old)
 and      /work/SRC/openSUSE:Factory/.python-nbval.new.26092 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-nbval"

Thu Jan 16 18:21:04 2020 rev:4 rq:764783 version:0.9.4

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-nbval/python-nbval.changes        
2019-11-29 15:59:02.524900793 +0100
+++ /work/SRC/openSUSE:Factory/.python-nbval.new.26092/python-nbval.changes     
2020-01-16 18:21:07.080970643 +0100
@@ -1,0 +2,8 @@
+Wed Jan 15 15:07:57 UTC 2020 - Todd R <[email protected]>
+
+- Update to 0.9.4
+  * Mark nbval as incompatible with coverage
+  * Workaround for Python 3.7 on Travis no longer needed
+  * Drop Python 2.7 testing on Windows again 
+
+-------------------------------------------------------------------

Old:
----
  nbval-0.9.3.tar.gz

New:
----
  nbval-0.9.4.tar.gz

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

Other differences:
------------------
++++++ python-nbval.spec ++++++
--- /var/tmp/diff_new_pack.z9au1p/_old  2020-01-16 18:21:07.884971098 +0100
+++ /var/tmp/diff_new_pack.z9au1p/_new  2020-01-16 18:21:07.884971098 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-nbval
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -19,7 +19,7 @@
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 %define         skip_python2 1
 Name:           python-nbval
-Version:        0.9.3
+Version:        0.9.4
 Release:        0
 Summary:        A pytest plugin to validate Jupyter notebooks
 License:        BSD-3-Clause

++++++ nbval-0.9.3.tar.gz -> nbval-0.9.4.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/nbval-0.9.3/PKG-INFO new/nbval-0.9.4/PKG-INFO
--- old/nbval-0.9.3/PKG-INFO    2019-09-27 10:34:27.000000000 +0200
+++ new/nbval-0.9.4/PKG-INFO    2019-12-16 15:52:34.000000000 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: nbval
-Version: 0.9.3
+Version: 0.9.4
 Summary: A py.test plugin to validate Jupyter notebooks
 Home-page: https://github.com/computationalmodelling/nbval
 Author: Laslett, Cortes, Fauske, Kluyver, Pepper, Fangohr
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/nbval-0.9.3/nbval/_version.py 
new/nbval-0.9.4/nbval/_version.py
--- old/nbval-0.9.3/nbval/_version.py   2019-09-27 10:30:58.000000000 +0200
+++ new/nbval-0.9.4/nbval/_version.py   2019-12-16 15:51:57.000000000 +0100
@@ -1,2 +1,2 @@
-version_info = (0, 9, 3)
+version_info = (0, 9, 4)
 __version__ = '.'.join(map(str, version_info[:3])) + ''.join(version_info[3:])
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/nbval-0.9.3/nbval.egg-info/PKG-INFO 
new/nbval-0.9.4/nbval.egg-info/PKG-INFO
--- old/nbval-0.9.3/nbval.egg-info/PKG-INFO     2019-09-27 10:34:26.000000000 
+0200
+++ new/nbval-0.9.4/nbval.egg-info/PKG-INFO     2019-12-16 15:52:34.000000000 
+0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: nbval
-Version: 0.9.3
+Version: 0.9.4
 Summary: A py.test plugin to validate Jupyter notebooks
 Home-page: https://github.com/computationalmodelling/nbval
 Author: Laslett, Cortes, Fauske, Kluyver, Pepper, Fangohr
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/nbval-0.9.3/nbval.egg-info/requires.txt 
new/nbval-0.9.4/nbval.egg-info/requires.txt
--- old/nbval-0.9.3/nbval.egg-info/requires.txt 2019-09-27 10:34:26.000000000 
+0200
+++ new/nbval-0.9.4/nbval.egg-info/requires.txt 2019-12-16 15:52:34.000000000 
+0100
@@ -3,4 +3,4 @@
 jupyter_client
 nbformat
 ipykernel
-coverage
+coverage<5
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/nbval-0.9.3/setup.py new/nbval-0.9.4/setup.py
--- old/nbval-0.9.3/setup.py    2018-06-04 17:10:28.000000000 +0200
+++ new/nbval-0.9.4/setup.py    2019-12-16 15:50:39.000000000 +0100
@@ -26,7 +26,7 @@
         'jupyter_client',
         'nbformat',
         'ipykernel',
-        'coverage'
+        'coverage < 5',  # until gh-129 is fixed
     ],
     classifiers = [
         'Framework :: IPython',


Reply via email to