Skip to content

Commit

Permalink
[New Version] Upgrade to 3.0 b1 (#8977)
Browse files Browse the repository at this point in the history
  • Loading branch information
ZHUI authored Aug 22, 2024
1 parent 5f6998f commit 7473743
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ Unified Checkpoint 大模型存储格式在模型参数分布上支持动态扩
### pip 安装

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

或者可通过以下命令安装最新 develop 分支代码:
Expand Down
2 changes: 1 addition & 1 deletion paddlenlp/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
PADDLENLP_STABLE_VERSION = "PADDLENLP_STABLE_VERSION"


__version__ = "3.0.0b0.post"
__version__ = "3.0.0b1.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 @@ -110,7 +110,7 @@ def show():
f.write(content)


__version__ = "3.0.0b0.post"
__version__ = "3.0.0b1.post"
if os.getenv(PADDLENLP_STABLE_VERSION):
__version__ = __version__.replace(".post", "")
else:
Expand Down

0 comments on commit 7473743

Please sign in to comment.