Skip to content

Commit 9ad7522

Browse files
committed
rm no-build-isolation
Signed-off-by: MengqingCao <cmq0113@163.com>
1 parent d6718ce commit 9ad7522

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

.github/workflows/accuracy_test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ jobs:
175175
working-directory: ./vllm-ascend
176176
run: |
177177
pip install -r requirements-dev.txt
178-
pip install -e . --no-build-isolation
178+
pip install -e .
179179
180180
- name: Install lm-eval, ray, and datasets
181181
run: |

.github/workflows/nightly_benchmarks.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ jobs:
116116
117117
- name: Install vllm-project/vllm-ascend
118118
run: |
119-
pip install -e . --no-build-isolation
119+
pip install -e .
120120
pip install -r benchmarks/requirements-bench.txt
121121
122122
- name: Run current commit benchmarks

.github/workflows/vllm_ascend_test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ jobs:
216216
- name: Install vllm-project/vllm-ascend
217217
run: |
218218
pip install -r requirements-dev.txt
219-
pip install -v -e . --no-build-isolation
219+
pip install -v -e .
220220
221221
- name: Run e2e test for V1 Engine
222222
env:
@@ -313,7 +313,7 @@ jobs:
313313
- name: Install vllm-project/vllm-ascend
314314
run: |
315315
pip install -r requirements-dev.txt
316-
pip install -v -e . --no-build-isolation
316+
pip install -v -e .
317317
318318
- name: Run vllm-project/vllm-ascend test for V1 Engine
319319
env:

.github/workflows/vllm_ascend_test_long_term.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ jobs:
9090
- name: Install vllm-project/vllm-ascend
9191
run: |
9292
pip install -r requirements-dev.txt
93-
pip install -v -e . --no-build-isolation
93+
pip install -v -e .
9494
9595
- name: Run vllm-project/vllm-ascend long term test
9696
run: |

.github/workflows/vllm_ascend_test_pd.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ jobs:
9999
- name: Install vllm-project/vllm-ascend
100100
run: |
101101
pip install -r requirements-dev.txt
102-
pip install -v -e . --no-build-isolation
102+
pip install -v -e .
103103
104104
- name: Run vllm-project/vllm-ascend PD Disaggregation test
105105
run: |

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ RUN VLLM_TARGET_DEVICE="empty" python3 -m pip install -v -e /vllm-workspace/vllm
4949
RUN source /usr/local/Ascend/ascend-toolkit/set_env.sh && \
5050
source /usr/local/Ascend/nnal/atb/set_env.sh && \
5151
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/Ascend/ascend-toolkit/latest/`uname -i`-linux/devlib && \
52-
python3 -m pip install -v -e /vllm-workspace/vllm-ascend/ --no-build-isolation --extra-index https://download.pytorch.org/whl/cpu/ && \
52+
python3 -m pip install -v -e /vllm-workspace/vllm-ascend/ --extra-index https://download.pytorch.org/whl/cpu/ && \
5353
python3 -m pip cache purge
5454

5555
# Install modelscope (for fast download) and ray (for multinode)

Dockerfile.openEuler

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ RUN VLLM_TARGET_DEVICE="empty" python3 -m pip install -e /vllm-workspace/vllm/ -
4646
RUN source /usr/local/Ascend/ascend-toolkit/set_env.sh && \
4747
source /usr/local/Ascend/nnal/atb/set_env.sh && \
4848
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/Ascend/ascend-toolkit/latest/`uname -i`-linux/devlib && \
49-
python3 -m pip install -v -e /vllm-workspace/vllm-ascend/ --no-build-isolation --extra-index https://download.pytorch.org/whl/cpu/ && \
49+
python3 -m pip install -v -e /vllm-workspace/vllm-ascend/ --extra-index https://download.pytorch.org/whl/cpu/ && \
5050
python3 -m pip cache purge
5151

5252
# Install modelscope (for fast download) and ray (for multinode)

0 commit comments

Comments
 (0)