Skip to content

Commit 3d1cd1d

Browse files
committed
try --no-build-isolation
1 parent 353f081 commit 3d1cd1d

File tree

2 files changed

+3
-10
lines changed

2 files changed

+3
-10
lines changed

.circleci/config.yml.in

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ jobs:
207207
pip install --user --progress-bar off mypy
208208
pip install --user --progress-bar off types-requests
209209
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 .
211211
mypy --config-file mypy.ini
212212

213213
docstring_parameters_sync:
@@ -241,7 +241,7 @@ jobs:
241241
command: |
242242
pip install --user --progress-bar off --pre torch -f https://download.pytorch.org/whl/nightly/cpu/torch_nightly.html
243243
# 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 .
245245
pip install pytest
246246
python test/test_hub.py
247247

@@ -254,7 +254,7 @@ jobs:
254254
command: |
255255
pip install --user --progress-bar off --pre torch -f https://download.pytorch.org/whl/nightly/cpu/torch_nightly.html
256256
# 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 .
258258
pip install --user onnx
259259
pip install --user onnxruntime
260260
pip install --user pytest

pyproject.toml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,3 @@
1-
[build-system]
2-
requires = [
3-
"setuptools >= 40.9.0",
4-
"wheel",
5-
]
6-
build-backend = "setuptools.build_meta"
7-
81
[tool.isort]
92
# See link below for available options
103
# https://pycqa.github.io/isort/docs/configuration/options.html

0 commit comments

Comments
 (0)