Skip to content

Commit 701a287

Browse files
authored
[Build] Make CI work on 0.7.3-dev (vllm-project#140)
Make CI work on 0.7.3-dev Signed-off-by: wangxiyuan <wangxiyuan1007@gmail.com>
1 parent 202b39a commit 701a287

File tree

5 files changed

+7
-19
lines changed

5 files changed

+7
-19
lines changed

.github/workflows/vllm_ascend_test.yaml

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -82,21 +82,15 @@ jobs:
8282
run: |
8383
apt-get update -y
8484
apt-get -y install `cat packages.txt`
85+
apt-get -y install gcc g++ cmake libnuma-dev
8586
8687
- name: Install dependencies
8788
run: |
8889
pip install -r requirements-dev.txt
8990
90-
- name: Checkout vllm-project/vllm repo
91-
uses: actions/checkout@v4
92-
with:
93-
repository: vllm-project/vllm
94-
path: ./vllm-empty
95-
96-
- name: Install vllm-project/vllm from source
97-
working-directory: ./vllm-empty
91+
- name: Install vllm-project/vllm from pypi
9892
run: |
99-
VLLM_TARGET_DEVICE=empty pip install -e .
93+
pip install vllm==0.7.3
10094
10195
- name: Install vllm-project/vllm-ascend
10296
run: |

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@
7070
'vllm_ascend_version': 'main',
7171
# the newest release version of vllm-ascend and matched vLLM, used in pip install.
7272
# This value should be updated when cut down release.
73-
'pip_vllm_ascend_version': "v0.7.1rc1",
74-
'pip_vllm_version': "v0.7.1",
73+
'pip_vllm_ascend_version': "v0.7.3rc1",
74+
'pip_vllm_version': "v0.7.3",
7575
}
7676

7777
# Add any paths that contain templates here, relative to this directory.

docs/source/installation.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -117,13 +117,6 @@ You can install `vllm` and `vllm-ascend` from **pre-built wheel**:
117117
```{code-block} bash
118118
:substitutions:
119119
120-
# Install vllm from source, since `pip install vllm` doesn't work on CPU currently.
121-
# It'll be fixed in the next vllm release, e.g. v0.7.3.
122-
git clone --branch |pip_vllm_version| https://github.com/vllm-project/vllm
123-
124-
cd vllm
125-
VLLM_TARGET_DEVICE=empty pip install . --extra-index https://download.pytorch.org/whl/cpu/
126-
127120
# Install vllm-ascend from pypi.
128121
pip install vllm-ascend==|pip_vllm_ascend_version| --extra-index https://download.pytorch.org/whl/cpu/
129122

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ requires = [
66
"decorator",
77
"pyyaml",
88
"scipy",
9-
"torch-npu >= 2.5.1rc1"
9+
"vllm==0.7.3",
1010
]
1111
build-backend = "setuptools.build_meta"

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ pyyaml
33
scipy
44
setuptools
55
setuptools-scm
6+
vllm==0.7.3

0 commit comments

Comments
 (0)