Skip to content

Commit 1cb2fe2

Browse files
Adding numba
1 parent fe09b86 commit 1cb2fe2

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@ RUN apt-get update \
2929
&& rm -rf /var/lib/apt/lists/*
3030

3131
RUN 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
3333
RUN pip3 install torch_cluster torch_sparse torch_scatter torch_geometric

.github/workflows/deploy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
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

.github/workflows/tests.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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: |

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

6969
url = "https://github.com/nicolas-chaulet/torch-points-kernels"
7070
__version__ = "0.6.4"

0 commit comments

Comments
 (0)