Merge pull request #2916 from nicoddemus/bin-py-1.5

Pin py<1.5 as 1.5 drops py26 and py33 support
This commit is contained in:
Bruno Oliveira 2017-11-13 17:56:52 -02:00 committed by GitHub
commit 22cff038f8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ def has_environment_marker_support():
def main():
install_requires = ['py>=1.4.33', 'setuptools'] # pluggy is vendored in _pytest.vendored_packages
install_requires = ['py>=1.4.33,<1.5', 'setuptools'] # pluggy is vendored in _pytest.vendored_packages
extras_require = {}
if has_environment_marker_support():
extras_require[':python_version=="2.6"'] = ['argparse', 'ordereddict']