File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -17,9 +17,9 @@ before_install:
1717 - export CC="gcc-4.9"
1818 - export CXX="g++-4.9"
1919install :
20- - 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
21- - 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
22- - if [[ $TRAVIS_PYTHON_VERSION == 3.6 ]]; then pip install http ://download.pytorch.org/whl/cpu/torch-0.4.1 -cp36-cp36m-linux_x86_64.whl; fi
20+ - if [[ $TRAVIS_PYTHON_VERSION == 2.7 ]]; then pip install https ://download.pytorch.org/whl/cpu/torch-1.0.0 -cp27-cp27m -linux_x86_64.whl; fi
21+ - if [[ $TRAVIS_PYTHON_VERSION == 3.5 ]]; then pip install https ://download.pytorch.org/whl/cpu/torch-1.0.0 -cp35-cp35m-linux_x86_64.whl; fi
22+ - if [[ $TRAVIS_PYTHON_VERSION == 3.6 ]]; then pip install https ://download.pytorch.org/whl/cpu/torch-1.0.0 -cp36-cp36m-linux_x86_64.whl; fi
2323 - pip install pycodestyle
2424 - pip install flake8
2525 - pip install codecov
Original file line number Diff line number Diff line change 11from setuptools import setup , find_packages
22from torch .utils .cpp_extension import BuildExtension , CUDAExtension , CUDA_HOME
33
4- __version__ = '0.2.2 '
4+ __version__ = '0.2.3 '
55url = 'https://github.com/rusty1s/pytorch_sparse'
66
77install_requires = ['scipy' ]
Original file line number Diff line number Diff line change 44from .spmm import spmm
55from .spspmm import spspmm
66
7- __version__ = '0.2.2 '
7+ __version__ = '0.2.3 '
88
99__all__ = [
1010 '__version__' ,
You can’t perform that action at this time.
0 commit comments