From 017360a68e318848ca1287c0eefebf71dcfa75c6 Mon Sep 17 00:00:00 2001 From: Romain Dorgueil Date: Fri, 9 Dec 2016 05:11:50 +0100 Subject: [PATCH] update requirements --- Makefile | 2 +- Projectfile | 7 ++++--- setup.py | 6 +++--- 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/Makefile b/Makefile index 501af42..b5ba3fa 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ # This file has been auto-generated. # All changes will be lost, see Projectfile. # -# Updated at 2016-12-09 05:04:48.163360 +# Updated at 2016-12-09 05:11:13.084703 PYTHON ?= $(shell which python) PYTHON_BASENAME ?= $(shell basename $(PYTHON)) diff --git a/Projectfile b/Projectfile index 3a07c8f..1b3699e 100644 --- a/Projectfile +++ b/Projectfile @@ -20,13 +20,14 @@ enable_features = { extras_require = { 'dev': [ - 'coverage >=4.0,<4.2', + 'coverage >=4.2,<4.3', 'mock >=2.0,<2.1', 'nose >=1.3,<1.4', 'pylint >=1.6,<1.7', - 'pytest >=2.9,<2.10', - 'pytest-cov >=2.3,<2.4', + 'pytest >=3,<4', + 'pytest-cov >=2.4,<2.5', 'sphinx', 'sphinx_rtd_theme', + ], } diff --git a/setup.py b/setup.py index 4c6d53a..0bce5c8 100644 --- a/setup.py +++ b/setup.py @@ -25,12 +25,12 @@ setup( classifiers = read('classifiers.txt', tolines), packages = find_packages(exclude=['ez_setup', 'example', 'test']), include_package_data = True, - extras_require = {'dev': ['coverage >=4.0,<4.2', + extras_require = {'dev': ['coverage >=4.2,<4.3', 'mock >=2.0,<2.1', 'nose >=1.3,<1.4', 'pylint >=1.6,<1.7', - 'pytest >=2.9,<2.10', - 'pytest-cov >=2.3,<2.4', + 'pytest >=3,<4', + 'pytest-cov >=2.4,<2.5', 'sphinx', 'sphinx_rtd_theme']}, url = '',