Commit 5a0804fc authored by rusty1s's avatar rusty1s
Browse files

removed py2.7 test

parent 4149cd2e
......@@ -3,7 +3,6 @@ sudo: required
dist: trusty
matrix:
include:
- python: 2.7
- python: 3.5
- python: 3.6
addons:
......@@ -17,15 +16,14 @@ before_install:
- export CC="gcc-4.9"
- export CXX="g++-4.9"
install:
- pip install future
- pip install numpy
- pip install torch_nightly -f https://download.pytorch.org/whl/nightly/cpu/torch_nightly.html
- pip install pycodestyle
- pip install flake8
- pip install codecov
script:
- if [[ $TRAVIS_PYTHON_VERSION != 2.7 ]]; then pycodestyle .; fi
- if [[ $TRAVIS_PYTHON_VERSION != 2.7 ]]; then flake8 .; fi
- pycodestyle .
- flake8 .
- python setup.py install
- python setup.py test
- cd docs && pip install -r requirements.txt && make clean && make html && make doctest && cd ..
......
......@@ -25,7 +25,7 @@ url = 'https://github.com/rusty1s/pytorch_scatter'
install_requires = []
setup_requires = ['pytest-runner']
tests_require = ['pytest-cov', 'pytest<5.0']
tests_require = ['pytest', 'pytest-cov']
setup(
name='torch_scatter',
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment