Skip to content

Commit

Permalink
[Automated] Merge release into main (#146)
Browse files Browse the repository at this point in the history
* 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
ProKil authored Jul 21, 2024
1 parent 1bdd155 commit c992b1c
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 2 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/merge-release-to-main.yml
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"
4 changes: 2 additions & 2 deletions pyproject.toml
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"
Expand Down Expand Up @@ -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"]
Expand Down

0 comments on commit c992b1c

Please sign in to comment.