Hello community, here is the log from the commit of package python-asteval for openSUSE:Factory checked in at 2019-12-09 21:37:49 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-asteval (Old) and /work/SRC/openSUSE:Factory/.python-asteval.new.4691 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-asteval" Mon Dec 9 21:37:49 2019 rev:7 rq:755349 version:0.9.17 Changes: -------- --- /work/SRC/openSUSE:Factory/python-asteval/python-asteval.changes 2019-10-30 14:43:49.749927793 +0100 +++ /work/SRC/openSUSE:Factory/.python-asteval.new.4691/python-asteval.changes 2019-12-09 21:38:21.074024245 +0100 @@ -1,0 +2,6 @@ +Mon Dec 9 17:26:14 UTC 2019 - Todd R <[email protected]> + +- Update to 0.9.17 + * add 3.8 to travis config + +------------------------------------------------------------------- Old: ---- asteval-0.9.16.tar.gz New: ---- asteval-0.9.17.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-asteval.spec ++++++ --- /var/tmp/diff_new_pack.jTODcq/_old 2019-12-09 21:38:21.522024068 +0100 +++ /var/tmp/diff_new_pack.jTODcq/_new 2019-12-09 21:38:21.522024068 +0100 @@ -18,7 +18,7 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} Name: python-asteval -Version: 0.9.16 +Version: 0.9.17 Release: 0 Summary: Safe, minimalistic evaluator of python expression using ast module License: MIT ++++++ asteval-0.9.16.tar.gz -> asteval-0.9.17.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/asteval-0.9.16/.travis.yml new/asteval-0.9.17/.travis.yml --- old/asteval-0.9.16/.travis.yml 2019-10-22 14:15:26.000000000 +0200 +++ new/asteval-0.9.17/.travis.yml 2019-11-14 21:29:09.000000000 +0100 @@ -8,6 +8,7 @@ - 3.5 - 3.6 - 3.7 + - 3.8 env: - version=without_numpy diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/asteval-0.9.16/PKG-INFO new/asteval-0.9.17/PKG-INFO --- old/asteval-0.9.16/PKG-INFO 2019-10-22 14:16:02.000000000 +0200 +++ new/asteval-0.9.17/PKG-INFO 2019-11-14 22:13:24.000000000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 1.2 Name: asteval -Version: 0.9.16 +Version: 0.9.17 Summary: Safe, minimalistic evaluator of python expression using ast module Home-page: http://github.com/newville/asteval Author: Matthew Newville diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/asteval-0.9.16/asteval/_version.py new/asteval-0.9.17/asteval/_version.py --- old/asteval-0.9.16/asteval/_version.py 2019-10-22 14:16:02.000000000 +0200 +++ new/asteval-0.9.17/asteval/_version.py 2019-11-14 22:13:24.000000000 +0100 @@ -8,11 +8,11 @@ version_json = ''' { - "date": "2019-10-22T07:06:26-0500", + "date": "2019-11-14T14:59:30-0600", "dirty": false, "error": null, - "full-revisionid": "fa1b9c2711551f8620bed9b1eb4f9faf686f1b7a", - "version": "0.9.16" + "full-revisionid": "e298284ed4778307c6e8145647eddf9bb17f752e", + "version": "0.9.17" } ''' # END VERSION_JSON diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/asteval-0.9.16/asteval/asteval.py new/asteval-0.9.17/asteval/asteval.py --- old/asteval-0.9.16/asteval/asteval.py 2019-10-22 14:15:26.000000000 +0200 +++ new/asteval-0.9.17/asteval/asteval.py 2019-11-14 21:27:44.000000000 +0100 @@ -306,7 +306,10 @@ return ret except: if with_raise: - self.raise_exception(node, expr=expr) + if len(self.error) == 0: + # Unhandled exception that didn't go through raise_exception + self.raise_exception(node, expr=expr) + raise def __call__(self, expr, **kw): """Call class instance as function.""" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/asteval-0.9.16/asteval.egg-info/PKG-INFO new/asteval-0.9.17/asteval.egg-info/PKG-INFO --- old/asteval-0.9.16/asteval.egg-info/PKG-INFO 2019-10-22 14:16:02.000000000 +0200 +++ new/asteval-0.9.17/asteval.egg-info/PKG-INFO 2019-11-14 22:13:24.000000000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 1.2 Name: asteval -Version: 0.9.16 +Version: 0.9.17 Summary: Safe, minimalistic evaluator of python expression using ast module Home-page: http://github.com/newville/asteval Author: Matthew Newville diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/asteval-0.9.16/doc/installation.rst new/asteval-0.9.17/doc/installation.rst --- old/asteval-0.9.16/doc/installation.rst 2019-10-22 14:15:58.000000000 +0200 +++ new/asteval-0.9.17/doc/installation.rst 2019-11-14 21:34:24.000000000 +0100 @@ -12,10 +12,8 @@ Asteval is a pure python module with no required dependencies outside of the standard library. Asteval will make use of the `numpy`_ module if available. -Version 0.9.15 supports Python 2.7, Python 3.5 and higher. It is tested with -Python 2.7, 3.5, 3.6, and 3.7. - -Version 0.9.16 will drop support for Python 2.7. +Version 0.9.17 supports and is tested with Python 2.7, Python 3.5 through 3.8. +This is the final version to support Python 2.7. Download and Installation
