File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,6 @@ sudo: required
3
3
dist : trusty
4
4
matrix :
5
5
include :
6
- - python : 2.7
7
6
- python : 3.5
8
7
- python : 3.6
9
8
addons :
@@ -17,15 +16,14 @@ before_install:
17
16
- export CC="gcc-4.9"
18
17
- export CXX="g++-4.9"
19
18
install :
20
- - pip install future
21
19
- pip install numpy
22
20
- pip install torch_nightly -f https://download.pytorch.org/whl/nightly/cpu/torch_nightly.html
23
21
- pip install pycodestyle
24
22
- pip install flake8
25
23
- pip install codecov
26
24
script :
27
- - if [[ $TRAVIS_PYTHON_VERSION != 2.7 ]]; then pycodestyle .; fi
28
- - if [[ $TRAVIS_PYTHON_VERSION != 2.7 ]]; then flake8 .; fi
25
+ - pycodestyle .
26
+ - flake8 .
29
27
- python setup.py install
30
28
- python setup.py test
31
29
- cd docs && pip install -r requirements.txt && make clean && make html && make doctest && cd ..
Original file line number Diff line number Diff line change 25
25
26
26
install_requires = []
27
27
setup_requires = ['pytest-runner' ]
28
- tests_require = ['pytest-cov ' , 'pytest<5.0 ' ]
28
+ tests_require = ['pytest' , 'pytest-cov ' ]
29
29
30
30
setup (
31
31
name = 'torch_scatter' ,
You can’t perform that action at this time.
0 commit comments