[Docs] Fix vllm and vllm-ascend version (#107)

### What this PR does / why we need it?

Fix vllm and vllm-ascend version 

| branch/tag | vllm_version |
vllm_ascend_version|pip_vllm_ascend_version|pip_vllm_version|
|----|----|----|----|----|
| main | main | main | v0.7.1rc1 | v0.7.1 |
| v0.7.1-dev | v0.7.1 | v0.7.1rc1 | v0.7.1rc1 | v0.7.1 |
| v0.7.1rc1 | v0.7.1 | v0.7.1rc1 | v0.7.1rc1 | v0.7.1 |

### Does this PR introduce _any_ user-facing change?
No

### How was this patch tested?
CI passed

Signed-off-by: Yikun Jiang <yikunkero@gmail.com>
This commit is contained in:
Yikun Jiang
2025-02-20 11:05:35 +08:00
committed by GitHub
parent cff03a4913
commit 3a4ce2aa15
4 changed files with 26 additions and 15 deletions

View File

@@ -61,14 +61,17 @@ myst_enable_extensions = ["colon_fence", "substitution"]
# Change this when cut down release
myst_substitutions = {
# the branch of vllm, used in vllm clone
# such as 'main', 'v0.7.1'
# - main branch: 'main'
# - vX.Y.Z branch: 'vX.Y.Z'
'vllm_version': 'main',
# the branch of vllm-ascend, used in vllm-ascend clone and image tag
# such as 'main', 'v0.7.1-dev', 'v0.7.1rc1'
# - main branch: 'main'
# - vX.Y.Z branch: latest vllm-ascend release tag
'vllm_ascend_version': 'main',
# the newest release version of vllm, used in quick start or container image tag.
# the newest release version of vllm-ascend and matched vLLM, used in pip install.
# This value should be updated when cut down release.
'vllm_newest_release_version': "v0.7.1rc1",
'pip_vllm_ascend_version': "v0.7.1rc1",
'pip_vllm_version': "v0.7.1",
}
# Add any paths that contain templates here, relative to this directory.