File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -29,5 +29,5 @@ RUN apt-get update \
2929 && rm -rf /var/lib/apt/lists/*
3030
3131RUN pip3 install -U pip
32- RUN pip3 install torch numpy scikit-learn flake8 setuptools
32+ RUN pip3 install torch numpy scikit-learn flake8 setuptools numba
3333RUN pip3 install torch_cluster torch_sparse torch_scatter torch_geometric
Original file line number Diff line number Diff line change 1717 - name : Install dependencies
1818 run : |
1919 python -m pip install --upgrade pip
20- pip install torch numpy scikit-learn flake8 setuptools wheel twine
20+ pip install torch numpy scikit-learn flake8 setuptools wheel twine numba
2121 - name : Build package
2222 run : |
2323 python setup.py build_ext --inplace
Original file line number Diff line number Diff line change @@ -22,14 +22,14 @@ jobs:
2222 - name : Install dependencies
2323 run : |
2424 python -m pip install --upgrade pip
25- pip install numpy scikit-learn flake8 setuptools
25+ pip install numpy scikit-learn flake8 setuptools numba
2626
2727 - name : Install torch windows + linux
2828 if : ${{matrix.os != 'macos-latest'}}
2929 run : pip install torch==1.5.0+cpu torchvision==0.6.0+cpu -f https://download.pytorch.org/whl/torch_stable.html
3030 - name : Install torch macos
3131 if : ${{matrix.os == 'macos-latest'}}
32- run : pip install torch
32+ run : pip install torch
3333
3434 - name : Build package
3535 run : |
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ def get_cmdclass():
6464 return {"build_ext" : BuildExtension }
6565
6666
67- requirements = ["torch>=1.1.0" ]
67+ requirements = ["torch>=1.1.0" , "numba" ]
6868
6969url = "https://github.com/nicolas-chaulet/torch-points-kernels"
7070__version__ = "0.6.4"
You can’t perform that action at this time.
0 commit comments