Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ pip install -e .\[flash_attn\]
Installation using pip:

```shell
pip install trinity-rft==0.2.0
pip install trinity-rft==0.2.1
# install flash-attn separately
pip install flash-attn==2.8.0.post2
```
Expand Down
2 changes: 1 addition & 1 deletion README_zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ pip install -e .\[flash_attn\]
使用 pip 安装:

```shell
pip install trinity-rft==0.2.0
pip install trinity-rft==0.2.1
# flash-attn 需要单独安装
pip install flash-attn==2.8.0.post2
```
Expand Down
2 changes: 1 addition & 1 deletion docs/sphinx_doc/source/main.md
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ pip install -e .\[flash_attn\]
Installation using pip:

```shell
pip install trinity-rft==0.2.0
pip install trinity-rft==0.2.1
```

Installation from docker:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "trinity-rft"
version = "0.2.1.dev0"
version = "0.2.1"
authors = [
{name="Trinity-RFT Team", email="trinity-rft@outlook.com"},
]
Expand Down
2 changes: 1 addition & 1 deletion trinity/cli/launcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ def run(config_path: str, dlc: bool = False, plugin_dir: str = None):
config_path,
)

envs = {PLUGIN_DIRS_ENV_VAR: plugin_dir}
envs = {PLUGIN_DIRS_ENV_VAR: plugin_dir or ""}
if dlc:
from trinity.utils.dlc_utils import setup_ray_cluster

Expand Down