File tree 2 files changed +3
-10
lines changed 2 files changed +3
-10
lines changed Original file line number Diff line number Diff line change @@ -207,7 +207,7 @@ jobs:
207
207
pip install --user --progress-bar off mypy
208
208
pip install --user --progress-bar off types-requests
209
209
pip install --user --progress-bar off --pre torch -f https://download.pytorch.org/whl/nightly/cpu/torch_nightly.html
210
- pip install --user --progress-bar off --editable .
210
+ pip install --user --progress-bar off --editable --no-build-isolation .
211
211
mypy --config-file mypy.ini
212
212
213
213
docstring_parameters_sync:
@@ -241,7 +241,7 @@ jobs:
241
241
command: |
242
242
pip install --user --progress-bar off --pre torch -f https://download.pytorch.org/whl/nightly/cpu/torch_nightly.html
243
243
# need to install torchvision dependencies due to transitive imports
244
- pip install --user --progress-bar off --editable .
244
+ pip install --user --progress-bar off --editable --no-build-isolation .
245
245
pip install pytest
246
246
python test/test_hub.py
247
247
@@ -254,7 +254,7 @@ jobs:
254
254
command: |
255
255
pip install --user --progress-bar off --pre torch -f https://download.pytorch.org/whl/nightly/cpu/torch_nightly.html
256
256
# need to install torchvision dependencies due to transitive imports
257
- pip install --user --progress-bar off --editable .
257
+ pip install --user --progress-bar off --editable --no-build-isolation .
258
258
pip install --user onnx
259
259
pip install --user onnxruntime
260
260
pip install --user pytest
Original file line number Diff line number Diff line change 1
- [build-system ]
2
- requires = [
3
- " setuptools >= 40.9.0" ,
4
- " wheel" ,
5
- ]
6
- build-backend = " setuptools.build_meta"
7
-
8
1
[tool .isort ]
9
2
# See link below for available options
10
3
# https://pycqa.github.io/isort/docs/configuration/options.html
You can’t perform that action at this time.
0 commit comments