Skip to content

Commit 608aa37

Browse files
committed
fix py2.7
1 parent 51ebed2 commit 608aa37

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ install:
2323
- pip install pycodestyle
2424
- pip install flake8
2525
- pip install codecov
26-
- if [[ $TRAVIS_PYTHON_VERSION == 2.7 ]]; then pip install "pytest<5.0"; fi
2726
script:
2827
- if [[ $TRAVIS_PYTHON_VERSION != 2.7 ]]; then pycodestyle .; fi
2928
- if [[ $TRAVIS_PYTHON_VERSION != 2.7 ]]; then flake8 .; fi

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
install_requires = []
2727
setup_requires = ['pytest-runner']
28-
tests_require = ['pytest', 'pytest-cov']
28+
tests_require = ['pytest<5.0', 'pytest-cov']
2929

3030
setup(
3131
name='torch_scatter',

0 commit comments

Comments
 (0)