-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Automated] Merge release into main (#146)
* bump the version, test release to PyPi * Update README.md * Update README.md * Update README.md * bumpy version to 0.0.9 * Update Sotopia presentation information in README.md * bump version to 0.0.10 * bump version * add merge release back to main action * change checkout v4->v3 * fix merge-back-to-main and pin mypy to <1.11.0
- Loading branch information
Showing
2 changed files
with
26 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: Merge Release Into Main | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- 'release' | ||
|
||
jobs: | ||
main: | ||
name: Create PR Release to Main | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: git checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: create pull request | ||
id: open-pr | ||
uses: repo-sync/pull-request@v2 | ||
with: | ||
github_token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} | ||
destination_branch: ${{ github.event.repository.default_branch }} | ||
pr_title: "[Automated] Merge ${{ github.ref_name }} into ${{ github.event.repository.default_branch }}" | ||
pr_body: "Automated Pull Request" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "sotopia" | ||
version = "0.0.9" | ||
version = "0.0.11" | ||
description = "A platform for simulating and evaluating social interaction." | ||
authors = ["Hao Zhu <[email protected]>, Xuhui Zhou <[email protected]>"] | ||
license = "MIT License" | ||
|
@@ -49,7 +49,7 @@ ruff = "*" | |
pytest = "*" | ||
pytest-cov = "*" | ||
pytest-asyncio = "*" | ||
mypy = "^1.8.0" | ||
mypy = ">=1.8.0,<1.11.0" | ||
|
||
[tool.poetry.extras] | ||
anthropic = ["anthropic"] | ||
|