update requirements

This commit is contained in:
Romain Dorgueil
2016-12-09 05:11:50 +01:00
parent a7a00011fc
commit 017360a68e
3 changed files with 8 additions and 7 deletions

View File

@ -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))

View File

@ -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',
],
}

View File

@ -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 = '',