"...git@developer.sourcefind.cn:renzhc/diffusers_dcu.git" did not exist on "9112028ed8510ef87606dfd5ef77d6d3b41ddd0b"
Commit e9171f8a authored by rusty1s's avatar rusty1s
Browse files

update build process

parent 88b8bd1f
#!/bin/sh #!/bin/sh
echo "Compiling kernel..."
TORCH=$(python -c "import os; import torch; print(os.path.dirname(torch.__file__))") TORCH=$(python -c "import os; import torch; print(os.path.dirname(torch.__file__))")
SRC_DIR=torch_scatter/kernel SRC_DIR=torch_scatter/kernel
BUILD_DIR=torch_scatter/build BUILD_DIR=torch_scatter/build
......
...@@ -2,14 +2,12 @@ from os import path as osp ...@@ -2,14 +2,12 @@ from os import path as osp
from setuptools import setup, find_packages from setuptools import setup, find_packages
import build # noqa __version__ = '0.2.2'
__version__ = '0.2.1'
url = 'https://github.com/rusty1s/pytorch_scatter' url = 'https://github.com/rusty1s/pytorch_scatter'
install_requires = ['cffi'] install_requires = ['cffi']
setup_requires = ['pytest-runner', 'cffi'] setup_requires = ['cffi']
tests_require = ['pytest', 'pytest-cov'] tests_require = ['pytest', 'pytest-runner', 'pytest-cov']
docs_require = ['Sphinx', 'sphinx_rtd_theme'] docs_require = ['Sphinx', 'sphinx_rtd_theme']
setup( setup(
......
...@@ -6,7 +6,7 @@ from .functions.mean import scatter_mean_, scatter_mean ...@@ -6,7 +6,7 @@ from .functions.mean import scatter_mean_, scatter_mean
from .functions.max import scatter_max_, scatter_max from .functions.max import scatter_max_, scatter_max
from .functions.min import scatter_min_, scatter_min from .functions.min import scatter_min_, scatter_min
__version__ = '0.2.1' __version__ = '0.2.2'
__all__ = [ __all__ = [
'scatter_add_', 'scatter_add', 'scatter_sub_', 'scatter_sub', 'scatter_add_', 'scatter_add', 'scatter_sub_', 'scatter_sub',
......
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