Skip to content

Commit 0a3fd0d

Browse files
committed
[Feature][Build] Upgrade the minimum version to 3.10
Signed-off-by: gcanlin <canlinguosdu@gmail.com>
1 parent 5f08e07 commit 0a3fd0d

File tree

5 files changed

+5
-6
lines changed

5 files changed

+5
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ By using vLLM Ascend plugin, popular open-source models, including Transformer-l
4141
- Hardware: Atlas 800I A2 Inference series, Atlas A2 Training series, Atlas 800I A3 Inference series, Atlas A3 Training series, Atlas 300I Duo (Experimental)
4242
- OS: Linux
4343
- Software:
44-
* Python >= 3.9, < 3.12
44+
* Python >= 3.10, < 3.12
4545
* CANN >= 8.3.rc1 (Ascend HDK version refers to [here](https://www.hiascend.com/document/detail/zh/canncommercial/83RC1/releasenote/releasenote_0000.html))
4646
* PyTorch == 2.7.1, torch-npu == 2.7.1
4747
* vLLM (the same version as vllm-ascend)

README.zh.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ vLLM 昇腾插件 (`vllm-ascend`) 是一个由社区维护的让vLLM在Ascend NP
4242
- 硬件:Atlas 800I A2 Inference系列、Atlas A2 Training系列、Atlas 800I A3 Inference系列、Atlas A3 Training系列、Atlas 300I Duo(实验性支持)
4343
- 操作系统:Linux
4444
- 软件:
45-
* Python >= 3.9, < 3.12
45+
* Python >= 3.10, < 3.12
4646
* CANN >= 8.3.rc1 (Ascend HDK 版本参考[这里](https://www.hiascend.com/document/detail/zh/canncommercial/83RC1/releasenote/releasenote_0000.html))
4747
* PyTorch == 2.7.1, torch-npu == 2.7.1
4848
* vLLM (与vllm-ascend版本一致)

docs/source/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ This document describes how to install vllm-ascend manually.
55
## Requirements
66

77
- OS: Linux
8-
- Python: >= 3.9, < 3.12
8+
- Python: >= 3.10, < 3.12
99
- A hardware with Ascend NPU. It's usually the Atlas 800 A2 series.
1010
- Software:
1111

examples/disaggregated_prefill_v1/mooncake_connector_deployment_guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## Environmental Dependencies
44

55
* Software:
6-
* Python >= 3.9, < 3.12
6+
* Python >= 3.10, < 3.12
77
* CANN >= 8.3.rc1
88
* PyTorch == 2.7.1, torch-npu == 2.7.1
99
* vLLM (same version as vllm-ascend)

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -373,7 +373,6 @@ def _read_requirements(filename: str) -> List[str]:
373373
},
374374
# TODO: Add 3.12 back when torch-npu support 3.12
375375
classifiers=[
376-
"Programming Language :: Python :: 3.9",
377376
"Programming Language :: Python :: 3.10",
378377
"Programming Language :: Python :: 3.11",
379378
"License :: OSI Approved :: Apache Software License",
@@ -384,7 +383,7 @@ def _read_requirements(filename: str) -> List[str]:
384383
"Topic :: Scientific/Engineering :: Information Analysis",
385384
],
386385
packages=find_packages(exclude=("docs", "examples", "tests*", "csrc")),
387-
python_requires=">=3.9",
386+
python_requires=">=3.10",
388387
install_requires=get_requirements(),
389388
ext_modules=ext_modules,
390389
cmdclass=cmdclass,

0 commit comments

Comments
 (0)