Skip to content

Commit 64cbb2c

Browse files
committed
rm no-build-isolation
Signed-off-by: MengqingCao <cmq0113@163.com>
1 parent a92e5fb commit 64cbb2c

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
@@ -166,7 +166,7 @@ jobs:
166166
- name: Install vllm-project/vllm-ascend
167167
run: |
168168
pip install -r requirements-dev.txt
169-
pip install -v -e . --no-build-isolation
169+
pip install -v -e .
170170
171171
- name: Run vllm-project/vllm-ascend test for V1 Engine
172172
env:
@@ -269,7 +269,7 @@ jobs:
269269
- name: Install vllm-project/vllm-ascend
270270
run: |
271271
pip install -r requirements-dev.txt
272-
pip install -v -e . --no-build-isolation
272+
pip install -v -e .
273273
274274
- name: Run vllm-project/vllm-ascend test for V1 Engine
275275
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)