Skip to content

Commit

Permalink
[version] update version info (PaddlePaddle#9241)
Browse files Browse the repository at this point in the history
  • Loading branch information
DrownFish19 authored Oct 11, 2024
1 parent d2d0ae6 commit 8b2cc08
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ Unified Checkpoint 大模型存储格式在模型参数分布上支持动态扩
### pip 安装

```shell
pip install --upgrade paddlenlp==3.0.0b1
pip install --upgrade paddlenlp==3.0.0b2
```

或者可通过以下命令安装最新 develop 分支代码:
Expand Down
2 changes: 1 addition & 1 deletion README_en.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ Detailed list 👉 [Supported Model List](https://github.com/PaddlePaddle/Paddle
### Pip Installation

```shell
pip install --upgrade paddlenlp==3.0.0b1
pip install --upgrade paddlenlp==3.0.0b2
```

or you can install the latest develop branch code with the following command:
Expand Down
2 changes: 1 addition & 1 deletion llm/docs/finetune.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
### 3.1 环境准备

- PaddlePaddle 3.0-beta
- PaddleNLP 3.0.0b1
- PaddleNLP 3.0.0b2
- PaddleSlim develop

git clone 代码到本地,即可开始。
Expand Down
2 changes: 1 addition & 1 deletion paddlenlp/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

# this version is used for develop and test.
# release version will be added fixed version by setup.py.
__version__ = "3.0.0b1.post"
__version__ = "3.0.0b2.post"
if os.getenv(PADDLENLP_STABLE_VERSION):
__version__ = __version__.replace(".post", "")
else:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ def show():


# only use this file to contral the version
__version__ = "3.0.0b1.post"
__version__ = "3.0.0b2.post"
if os.getenv(PADDLENLP_STABLE_VERSION):
__version__ = __version__.replace(".post", "")
else:
Expand Down

0 comments on commit 8b2cc08

Please sign in to comment.