We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51ebed2 commit 608aa37Copy full SHA for 608aa37
.travis.yml
@@ -23,7 +23,6 @@ install:
23
- pip install pycodestyle
24
- pip install flake8
25
- pip install codecov
26
- - if [[ $TRAVIS_PYTHON_VERSION == 2.7 ]]; then pip install "pytest<5.0"; fi
27
script:
28
- if [[ $TRAVIS_PYTHON_VERSION != 2.7 ]]; then pycodestyle .; fi
29
- if [[ $TRAVIS_PYTHON_VERSION != 2.7 ]]; then flake8 .; fi
setup.py
@@ -25,7 +25,7 @@
install_requires = []
setup_requires = ['pytest-runner']
-tests_require = ['pytest', 'pytest-cov']
+tests_require = ['pytest<5.0', 'pytest-cov']
30
setup(
31
name='torch_scatter',
0 commit comments