Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
torch-sparse
Commits
a7132626
Commit
a7132626
authored
Dec 12, 2018
by
rusty1s
Browse files
update travis to 1.0.0
parent
c52de2d4
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
.travis.yml
.travis.yml
+3
-3
setup.py
setup.py
+1
-1
torch_sparse/__init__.py
torch_sparse/__init__.py
+1
-1
No files found.
.travis.yml
View file @
a7132626
...
@@ -17,9 +17,9 @@ before_install:
...
@@ -17,9 +17,9 @@ before_install:
-
export CC="gcc-4.9"
-
export CC="gcc-4.9"
-
export CXX="g++-4.9"
-
export CXX="g++-4.9"
install
:
install
:
-
if [[ $TRAVIS_PYTHON_VERSION == 2.7 ]]; then pip install http://download.pytorch.org/whl/cpu/torch-
0.4.1
-cp27-cp27m
u
-linux_x86_64.whl; fi
-
if [[ $TRAVIS_PYTHON_VERSION == 2.7 ]]; then pip install http
s
://download.pytorch.org/whl/cpu/torch-
1.0.0
-cp27-cp27m-linux_x86_64.whl; fi
-
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
-
if [[ $TRAVIS_PYTHON_VERSION == 3.5 ]]; then pip install http
s
://download.pytorch.org/whl/cpu/torch-
1.0.0
-cp35-cp35m-linux_x86_64.whl; fi
-
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
-
if [[ $TRAVIS_PYTHON_VERSION == 3.6 ]]; then pip install http
s
://download.pytorch.org/whl/cpu/torch-
1.0.0
-cp36-cp36m-linux_x86_64.whl; fi
-
pip install pycodestyle
-
pip install pycodestyle
-
pip install flake8
-
pip install flake8
-
pip install codecov
-
pip install codecov
...
...
setup.py
View file @
a7132626
from
setuptools
import
setup
,
find_packages
from
setuptools
import
setup
,
find_packages
from
torch.utils.cpp_extension
import
BuildExtension
,
CUDAExtension
,
CUDA_HOME
from
torch.utils.cpp_extension
import
BuildExtension
,
CUDAExtension
,
CUDA_HOME
__version__
=
'0.2.
2
'
__version__
=
'0.2.
3
'
url
=
'https://github.com/rusty1s/pytorch_sparse'
url
=
'https://github.com/rusty1s/pytorch_sparse'
install_requires
=
[
'scipy'
]
install_requires
=
[
'scipy'
]
...
...
torch_sparse/__init__.py
View file @
a7132626
...
@@ -4,7 +4,7 @@ from .eye import eye
...
@@ -4,7 +4,7 @@ from .eye import eye
from
.spmm
import
spmm
from
.spmm
import
spmm
from
.spspmm
import
spspmm
from
.spspmm
import
spspmm
__version__
=
'0.2.
2
'
__version__
=
'0.2.
3
'
__all__
=
[
__all__
=
[
'__version__'
,
'__version__'
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment