Olivier Sallou pushed to branch upstream at Debian Med / python-easydev
Commits: 8a1f7542 by Olivier Sallou at 2019-10-28T15:56:46Z New upstream version 0.9.38 - - - - - 5 changed files: - PKG-INFO - easydev/__init__.py - easydev/config_tools.py - setup.cfg - setup.py Changes: ===================================== PKG-INFO ===================================== @@ -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 ===================================== easydev/__init__.py ===================================== @@ -19,7 +19,7 @@ from __future__ import print_function #from __future__ import absolute_import -__version__ = "0.9.36" +__version__ = "0.9.38" try: import pkg_resources except ImportError as err: ===================================== easydev/config_tools.py ===================================== @@ -421,7 +421,7 @@ def _load_configfile(configpath): "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 " ===================================== setup.cfg ===================================== @@ -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 + ===================================== setup.py ===================================== @@ -7,12 +7,12 @@ import glob _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'], View it on GitLab: https://salsa.debian.org/med-team/python-easydev/commit/8a1f75426cb9707d3148180556d8d7507e9db22b -- View it on GitLab: https://salsa.debian.org/med-team/python-easydev/commit/8a1f75426cb9707d3148180556d8d7507e9db22b You're receiving this email because of your account on salsa.debian.org.
_______________________________________________ debian-med-commit mailing list [email protected] https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/debian-med-commit
