Skip to content

Commit 4d3a0ac

Browse files
committed
[CI] use pip instead of setuptools
1 parent c9f62e0 commit 4d3a0ac

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/full-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
fi
6363
fi
6464
- name: Install TinyNeuralNetwork
65-
run: python setup.py install
65+
run: pip install .
6666
- name: Install test dependencies
6767
env:
6868
PYTORCH_VER: ${{ matrix.vers.pt_ver }}

.github/workflows/smoke-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Install PyTorch
2626
run: conda install pytorch torchvision -c pytorch
2727
- name: Install TinyNeuralNetwork
28-
run: python setup.py install
28+
run: pip install .
2929
- name: Basic imports
3030
run: |
3131
cd tests

0 commit comments

Comments
 (0)