Commit 8a1f7542 authored by Olivier Sallou's avatar Olivier Sallou
Browse files

New upstream version 0.9.38

parent 13c5498f
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
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@ebi.ac.uk
Author-email: thomas.cokelaer@pasteur.fr
License: new BSD
Download-URL: ['http://pypi.python.org/pypi/easydev']
Description-Content-Type: UNKNOWN
+1 −1
Original line number Diff line number Diff line
@@ -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:
+1 −1
Original line number Diff line number Diff line
@@ -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 "
+4 −16
Original line number Diff line number Diff line
[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
+2 −2
Original line number Diff line number Diff line
@@ -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@ebi.ac.uk')},
    'authors': {'Cokelaer':('Thomas Cokelaer','thomas.cokelaer@pasteur.fr')},
    'version': version,
    'license' : 'new BSD',
    'download_url' : ['http://pypi.python.org/pypi/easydev'],