Skip to content

Commit ff08902

Browse files
committed
travis gcc+4.9
1 parent 285168c commit ff08902

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed

.travis.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,16 @@ matrix:
66
- python: 2.7
77
- python: 3.5
88
- python: 3.6
9+
addons:
10+
apt:
11+
sources:
12+
- ubuntu-toolchain-r-test
13+
packages:
14+
- gcc-4.9
15+
- g++-4.9
16+
before_install:
17+
- export CC="gcc-4.9"
18+
- export CXX="g++-4.9"
919
install:
1020
- if [[ $TRAVIS_PYTHON_VERSION == 2.7 ]]; then pip install http://download.pytorch.org/whl/cpu/torch-0.4.1-cp27-cp27mu-linux_x86_64.whl; fi
1121
- if [[ $TRAVIS_PYTHON_VERSION == 3.5 ]]; then pip install http://download.pytorch.org/whl/cpu/torch-0.4.1-cp35-cp35m-linux_x86_64.whl; fi

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@
2121
setup(
2222
name='torch_sparse',
2323
version=__version__,
24-
description='PyTorch Extension Library of Optimized Sparse Matrix '
25-
'Operations',
24+
description='PyTorch Extension Library of Optimized Autograd Sparse '
25+
'Matrix Operations',
2626
author='Matthias Fey',
2727
author_email='[email protected]',
2828
url=url,
2929
download_url='{}/archive/{}.tar.gz'.format(url, __version__),
30-
keywords=['pytorch', 'sparse', 'deep-learning'],
30+
keywords=['pytorch', 'sparse', 'autograd', 'deep-learning'],
3131
install_requires=install_requires,
3232
setup_requires=setup_requires,
3333
tests_require=tests_require,

0 commit comments

Comments
 (0)