Commit f327b459 authored by rusty1s's avatar rusty1s
Browse files

print library dir

parent 9997d96c
...@@ -12,10 +12,11 @@ if [ "${TRAVIS_OS_NAME}" != "windows" ]; then ...@@ -12,10 +12,11 @@ if [ "${TRAVIS_OS_NAME}" != "windows" ]; then
make make
sudo make install sudo make install
else else
# Fix GKlib on Windows: https://github.com/jlblancoc/suitesparse-metis-for-windows/issues/6
sed -i.bak -e '61,69d' GKlib/gk_arch.h sed -i.bak -e '61,69d' GKlib/gk_arch.h
mkdir build mkdir build
cd build || exit cd build || exit
cmake .. cmake ..
cmake --build . --config "Release" --target ALL_BUILD cmake --build . --config "Release" --target ALL_BUILD
...@@ -25,6 +26,9 @@ else ...@@ -25,6 +26,9 @@ else
echo "--- RELEASE" echo "--- RELEASE"
ls libmetis/Release ls libmetis/Release
echo "$LIBRARY_LIB"
echo "$LIBRARY_INC"
cd .. cd ..
fi fi
......
...@@ -72,7 +72,7 @@ tests_require = ['pytest', 'pytest-cov'] ...@@ -72,7 +72,7 @@ tests_require = ['pytest', 'pytest-cov']
setup( setup(
name='torch_sparse', name='torch_sparse',
version='0.5.1', version='0.6.0',
author='Matthias Fey', author='Matthias Fey',
author_email='matthias.fey@tu-dortmund.de', author_email='matthias.fey@tu-dortmund.de',
url='https://github.com/rusty1s/pytorch_sparse', url='https://github.com/rusty1s/pytorch_sparse',
......
...@@ -3,7 +3,7 @@ import os.path as osp ...@@ -3,7 +3,7 @@ import os.path as osp
import torch import torch
__version__ = '0.5.1' __version__ = '0.6.0'
expected_torch_version = (1, 4) expected_torch_version = (1, 4)
try: try:
......
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