Skip to content

Commit 11e5763

Browse files
authored
Fix release script (agentscope-ai#263)
1 parent 7d2323f commit 11e5763

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.github/workflows/release.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ jobs:
2424
python -m pip install --upgrade pip
2525
pip install build
2626
27+
- name: Build package
28+
run: python -m build
29+
2730
- name: Publish to PyPI
2831
uses: pypa/gh-action-pypi-publish@release/v1
2932
with:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "trinity-rft"
7-
version = "0.3.0"
7+
version = "0.3.1.dev0"
88
authors = [
99
{name="Trinity-RFT Team", email="trinity-rft@outlook.com"},
1010
]

trinity/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# -*- coding: utf-8 -*-
22
"""Trinity-RFT (Reinforcement Fine-Tuning)"""
33

4-
__version__ = "0.3.0"
4+
__version__ = "0.3.1.dev0"

0 commit comments

Comments
 (0)