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 4c745f1 commit eb40b3aCopy full SHA for eb40b3a
.travis.yml
@@ -17,7 +17,7 @@ before_install:
17
- export CC="gcc-4.9"
18
- export CXX="g++-4.9"
19
install:
20
- - pip install future
+ - pip install future; python_version < '3.0'
21
- pip install numpy
22
- pip install torch_nightly -f https://download.pytorch.org/whl/nightly/cpu/torch_nightly.html
23
- pip install pycodestyle
setup.py
@@ -25,7 +25,11 @@
25
26
install_requires = []
27
setup_requires = ['pytest-runner']
28
-tests_require = ['pytest', 'pytest-cov']
+tests_require = [
29
+ 'pytest<5.0;python_version<"3.0"',
30
+ 'pytest;python_version>="3.0"',
31
+ 'pytest-cov',
32
+]
33
34
setup(
35
name='torch_scatter',
0 commit comments