Skip to content

Commit c151767

Browse files
committed
Merge remote-tracking branch 'upstream/master' into conda
2 parents b604838 + 6975a41 commit c151767

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.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<1.20" scikit-learn flake8 setuptools wheel twine numba
20+
pip install torch "numpy<=1.21" 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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Install dependencies
2424
run: |
2525
python -m pip install --upgrade pip
26-
pip install "numpy<1.20" scikit-learn flake8 setuptools numba==0.49.1
26+
pip install "numpy<=1.21" scikit-learn flake8 setuptools numba
2727
2828
- name: Install torch ${{ matrix.torch-version }} windows + linux
2929
if: ${{matrix.os != 'macos-latest'}}

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@ exclude: "build|egg-info|dist"
22

33
repos:
44
- repo: https://github.com/pre-commit/pre-commit-hooks
5-
rev: v4.0.1
5+
rev: v4.3.0
66
hooks:
77
- id: trailing-whitespace
88
- id: check-added-large-files
99
- id: end-of-file-fixer
1010

1111
- repo: https://github.com/psf/black
12-
rev: 21.9b0
12+
rev: 22.3.0
1313
hooks:
1414
- id: black
1515
language_version: python3.7

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ def get_cmdclass():
8181
with open(os.path.join(this_directory, "README.md"), encoding="utf-8") as f:
8282
long_description = f.read()
8383

84-
requirements = ["torch>=1.1.0", "numba", "numpy<1.20", "scikit-learn"]
84+
requirements = ["torch>=1.1.0", "numba", "numpy<=1.21", "scikit-learn"]
8585

8686
url = "https://github.com/nicolas-chaulet/torch-points-kernels"
8787
__version__ = "0.7.1"

0 commit comments

Comments
 (0)