Skip to content

Commit ca83b50

Browse files
authored
bump version to v0.9.2.post1 (#3849)
* bump version to v0.9.2.post1 * update * fix
1 parent 39b151b commit ca83b50

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

docs/en/get_started/installation.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ It is recommended installing lmdeploy using pip in a conda environment (python 3
1717
```shell
1818
conda create -n lmdeploy python=3.10 -y
1919
conda activate lmdeploy
20-
pip install lmdeploy
20+
pip install lmdeploy==0.9.2.post1
2121
```
2222

2323
The default prebuilt package is compiled on **CUDA 12**. If CUDA 11+ (>=11.3) is required, you can install lmdeploy by:
2424

2525
```shell
26-
export LMDEPLOY_VERSION=0.9.2
26+
export LMDEPLOY_VERSION=0.9.2.post1
2727
export PYTHON_VERSION=310
2828
pip install https://github.com/InternLM/lmdeploy/releases/download/v${LMDEPLOY_VERSION}/lmdeploy-${LMDEPLOY_VERSION}+cu118-cp${PYTHON_VERSION}-cp${PYTHON_VERSION}-manylinux2014_x86_64.whl --extra-index-url https://download.pytorch.org/whl/cu118
2929
```
@@ -51,7 +51,7 @@ DISABLE_TURBOMIND=1 pip install git+https://github.com/InternLM/lmdeploy.git
5151
If you prefer a specific version instead of the `main` branch of LMDeploy, you can specify it in your command:
5252

5353
```shell
54-
pip install https://github.com/InternLM/lmdeploy/archive/refs/tags/v0.9.2.zip
54+
pip install https://github.com/InternLM/lmdeploy/archive/refs/tags/v0.9.2.post1.zip
5555
```
5656

5757
If you want to build LMDeploy with support for Ascend, Cambricon, or MACA, install LMDeploy with the corresponding `LMDEPLOY_TARGET_DEVICE` environment variable.

docs/zh_cn/get_started/installation.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ Ada Lovelace(sm89): 40 系列
1717
```shell
1818
conda create -n lmdeploy python=3.10 -y
1919
conda activate lmdeploy
20-
pip install lmdeploy
20+
pip install lmdeploy==0.9.2.post1
2121
```
2222

2323
默认的预构建包是在 **CUDA 12** 上编译的。如果需要 CUDA 11+ (>=11.3),你可以使用以下命令安装 lmdeploy:
2424

2525
```shell
26-
export LMDEPLOY_VERSION=0.9.2
26+
export LMDEPLOY_VERSION=0.9.2.post1
2727
export PYTHON_VERSION=310
2828
pip install https://github.com/InternLM/lmdeploy/releases/download/v${LMDEPLOY_VERSION}/lmdeploy-${LMDEPLOY_VERSION}+cu118-cp${PYTHON_VERSION}-cp${PYTHON_VERSION}-manylinux2014_x86_64.whl --extra-index-url https://download.pytorch.org/whl/cu118
2929
```
@@ -51,7 +51,7 @@ DISABLE_TURBOMIND=1 pip install git+https://github.com/InternLM/lmdeploy.git
5151
如果您希望使用特定版本,而不是 LMDeploy 的 `main` 分支,可以在命令行中指定:
5252

5353
```shell
54-
pip install https://github.com/InternLM/lmdeploy/archive/refs/tags/v0.9.2.zip
54+
pip install https://github.com/InternLM/lmdeploy/archive/refs/tags/v0.9.2.post1.zip
5555
```
5656

5757
如果您希望构建支持昇腾、寒武纪或沐熙的 LMDeploy,请使用相应的 `LMDEPLOY_TARGET_DEVICE` 环境变量进行安装。

lmdeploy/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright (c) OpenMMLab. All rights reserved.
22
from typing import Tuple
33

4-
__version__ = '0.9.2'
4+
__version__ = '0.9.2.post1'
55
short_version = __version__
66

77

0 commit comments

Comments
 (0)