From 3544bc05dfad7fe372355a7e61d6b1001c05888f Mon Sep 17 00:00:00 2001 From: andrei Date: Tue, 18 Jul 2017 15:31:47 -0700 Subject: [PATCH] Actually fix travis builds --- .travis.yml | 3 +-- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index fc2dc6a..ec028e6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,9 +8,8 @@ python: - '3.4' - '3.5' - '3.6' - - 'nightly' install: - - pip install --user -U pip + - pip install -U pip setuptools pytest script: 'python setup.py test' diff --git a/setup.py b/setup.py index 3914101..aa2d6fb 100644 --- a/setup.py +++ b/setup.py @@ -32,8 +32,8 @@ setup( install_requires=requirements, extras_require=extras_require, test_suite='tests', - setup_requires=['pytest-runner'], - tests_require=['pytest', 'pytest-benchmark==3.1.0a2'], + setup_requires=['pytest-runner==2.11.1'], + tests_require=['pytest==3.1.3', 'pytest-benchmark==3.1.0a2'], classifiers=[ 'Development Status :: 4 - Beta', 'License :: OSI Approved :: MIT License',