Commit 608aa37f authored by rusty1s's avatar rusty1s
Browse files

fix py2.7

parent 51ebed2b
......@@ -23,7 +23,6 @@ install:
- pip install pycodestyle
- pip install flake8
- pip install codecov
- if [[ $TRAVIS_PYTHON_VERSION == 2.7 ]]; then pip install "pytest<5.0"; fi
script:
- if [[ $TRAVIS_PYTHON_VERSION != 2.7 ]]; then pycodestyle .; fi
- if [[ $TRAVIS_PYTHON_VERSION != 2.7 ]]; then flake8 .; fi
......
......@@ -25,7 +25,7 @@ url = 'https://github.com/rusty1s/pytorch_scatter'
install_requires = []
setup_requires = ['pytest-runner']
tests_require = ['pytest', 'pytest-cov']
tests_require = ['pytest<5.0', 'pytest-cov']
setup(
name='torch_scatter',
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment