[med-svn] [Git][med-team/python-easydev][upstream] New upstream version 0.9.38
Olivier Sallou
gitlab at salsa.debian.org
Mon Oct 28 16:01:27 GMT 2019
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: cokelaer at ebi.ac.uk
+Author-email: thomas.cokelaer at pasteur.fr
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','cokelaer at ebi.ac.uk')},
+ 'authors': {'Cokelaer':('Thomas Cokelaer','thomas.cokelaer at pasteur.fr')},
'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.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/debian-med-commit/attachments/20191028/7c294a04/attachment-0001.html>
More information about the debian-med-commit
mailing list