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 6d5c746 commit 51ebed2Copy full SHA for 51ebed2
.travis.yml
@@ -23,6 +23,7 @@ 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,11 +25,7 @@
install_requires = []
setup_requires = ['pytest-runner']
-tests_require = [
- 'pytest<5.0;python_version<"3.0"',
30
- 'pytest;python_version>="3.0"',
31
- 'pytest-cov',
32
-]
+tests_require = ['pytest', 'pytest-cov']
33
34
setup(
35
name='torch_scatter',
0 commit comments