Hello community, here is the log from the commit of package python-easydev for openSUSE:Factory checked in at 2019-09-13 15:03:15 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-easydev (Old) and /work/SRC/openSUSE:Factory/.python-easydev.new.7948 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-easydev" Fri Sep 13 15:03:15 2019 rev:3 rq:730631 version:0.9.38 Changes: -------- --- /work/SRC/openSUSE:Factory/python-easydev/python-easydev.changes 2018-12-13 19:43:27.685089557 +0100 +++ /work/SRC/openSUSE:Factory/.python-easydev.new.7948/python-easydev.changes 2019-09-13 15:04:53.181262246 +0200 @@ -1,0 +2,7 @@ +Fri Sep 13 08:20:09 UTC 2019 - Tomáš Chvátal <[email protected]> + +- Update to 0.9.38: + * synchronized with pypi. Just an updated travis version to get rid of + py3.3 and removing deprecated messages. + +------------------------------------------------------------------- Old: ---- easydev-0.9.37.tar.gz New: ---- easydev-0.9.38.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-easydev.spec ++++++ --- /var/tmp/diff_new_pack.xpAEbY/_old 2019-09-13 15:04:53.589262160 +0200 +++ /var/tmp/diff_new_pack.xpAEbY/_new 2019-09-13 15:04:53.593262159 +0200 @@ -1,7 +1,7 @@ # # spec file for package python-easydev # -# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -18,7 +18,7 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} Name: python-easydev -Version: 0.9.37 +Version: 0.9.38 Release: 0 Summary: Common utilities to ease the development of Python packages License: BSD-3-Clause @@ -41,6 +41,7 @@ Requires: python-colorama Requires: python-colorlog Requires: python-pexpect +Requires: python-setuptools Recommends: python-line_profiler BuildArch: noarch @@ -55,6 +56,7 @@ %prep %setup -q -n easydev-%{version} sed -i -e '/^#!\//, 1d' easydev/appdirs.py +rm -r easydev/share/__pycache__ %build %python_build ++++++ easydev-0.9.37.tar.gz -> easydev-0.9.38.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/easydev-0.9.37/PKG-INFO new/easydev-0.9.38/PKG-INFO --- old/easydev-0.9.37/PKG-INFO 2018-04-11 21:52:36.000000000 +0200 +++ new/easydev-0.9.38/PKG-INFO 2019-08-23 10:54:51.000000000 +0200 @@ -1,10 +1,10 @@ Metadata-Version: 1.1 Name: easydev -Version: 0.9.37 +Version: 0.9.38 Summary: Common utilities to ease the development of Python packages Home-page: ['http://packages.python.org/easydev/'] Author: Thomas Cokelaer -Author-email: [email protected] +Author-email: [email protected] License: new BSD Download-URL: ['http://pypi.python.org/pypi/easydev'] Description-Content-Type: UNKNOWN diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/easydev-0.9.37/easydev/__init__.py new/easydev-0.9.38/easydev/__init__.py --- old/easydev-0.9.37/easydev/__init__.py 2018-04-11 21:45:41.000000000 +0200 +++ new/easydev-0.9.38/easydev/__init__.py 2019-08-23 10:45:35.000000000 +0200 @@ -19,7 +19,7 @@ #from __future__ import absolute_import -__version__ = "0.9.36" +__version__ = "0.9.38" try: import pkg_resources except ImportError as err: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/easydev-0.9.37/easydev/config_tools.py new/easydev-0.9.38/easydev/config_tools.py --- old/easydev-0.9.37/easydev/config_tools.py 2017-12-22 22:49:43.000000000 +0100 +++ new/easydev-0.9.38/easydev/config_tools.py 2019-08-23 10:34:18.000000000 +0200 @@ -421,7 +421,7 @@ "has not been installed. Please install " "PyYAML to use YAML config files.") try: - return yaml.load(f) + return yaml.load(f, Loader=yaml.FullLoader) except yaml.YAMLError: raise IOError("Config file is not valid JSON or YAML. " "In case of YAML, make sure to not mix " diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/easydev-0.9.37/easydev.egg-info/PKG-INFO new/easydev-0.9.38/easydev.egg-info/PKG-INFO --- old/easydev-0.9.37/easydev.egg-info/PKG-INFO 2018-04-11 21:52:36.000000000 +0200 +++ new/easydev-0.9.38/easydev.egg-info/PKG-INFO 2019-08-23 10:54:50.000000000 +0200 @@ -1,10 +1,10 @@ Metadata-Version: 1.1 Name: easydev -Version: 0.9.37 +Version: 0.9.38 Summary: Common utilities to ease the development of Python packages Home-page: ['http://packages.python.org/easydev/'] Author: Thomas Cokelaer -Author-email: [email protected] +Author-email: [email protected] License: new BSD Download-URL: ['http://pypi.python.org/pypi/easydev'] Description-Content-Type: UNKNOWN diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/easydev-0.9.37/setup.cfg new/easydev-0.9.38/setup.cfg --- old/easydev-0.9.37/setup.cfg 2018-04-11 21:52:36.000000000 +0200 +++ new/easydev-0.9.38/setup.cfg 2019-08-23 10:54:51.000000000 +0200 @@ -1,27 +1,15 @@ -[sdist] - -[egg_info] -tag_build = -tag_date = 0 - -[global] - [build_sphinx] source_dir = doc/source build_dir = doc/build all_files = 1 -[nosetests] -tests = test -with-coverage = 1 -cover-package = easydev -verbosity = 2 -logging-level = ERROR -attr = !skip,!notravis - [upload_docs] upload_dir = doc/build/html/ [tool:pytest] addopts = --cov=easydev --cov-report=term-missing --durations=10 --verbose +[egg_info] +tag_build = +tag_date = 0 + diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/easydev-0.9.37/setup.py new/easydev-0.9.38/setup.py --- old/easydev-0.9.37/setup.py 2018-04-11 21:46:31.000000000 +0200 +++ new/easydev-0.9.38/setup.py 2019-08-23 10:45:20.000000000 +0200 @@ -7,12 +7,12 @@ _MAJOR = 0 _MINOR = 9 -_MICRO = 37 +_MICRO = 38 version = '%d.%d.%d' % (_MAJOR, _MINOR, _MICRO) release = '%d.%d' % (_MAJOR, _MINOR) metainfo = { - 'authors': {'Cokelaer':('Thomas Cokelaer','[email protected]')}, + 'authors': {'Cokelaer':('Thomas Cokelaer','[email protected]')}, 'version': version, 'license' : 'new BSD', 'download_url' : ['http://pypi.python.org/pypi/easydev'],
