From 9751ab21a5c66e1605a5c8c141c932ccf137bc29 Mon Sep 17 00:00:00 2001 From: Hao Zhu Date: Mon, 21 Oct 2024 13:31:41 -0400 Subject: [PATCH 1/3] update macos test runner as macos-latest --- .github/workflows/cli_tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cli_tests.yml b/.github/workflows/cli_tests.yml index 6c9cf5422..13706ad82 100644 --- a/.github/workflows/cli_tests.yml +++ b/.github/workflows/cli_tests.yml @@ -20,7 +20,7 @@ jobs: strategy: max-parallel: 5 matrix: - os: [ubuntu-latest, macos-13] + os: [ubuntu-latest, macos-latest] runs-on: ${{ matrix.os }} From da71ad5e243e176cb733363831eb060fd3c13ca2 Mon Sep 17 00:00:00 2001 From: Hao Zhu Date: Mon, 21 Oct 2024 13:36:09 -0400 Subject: [PATCH 2/3] redis-stack-server --- sotopia/cli/install/install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sotopia/cli/install/install.py b/sotopia/cli/install/install.py index 0c7bfee04..67ac65bd8 100644 --- a/sotopia/cli/install/install.py +++ b/sotopia/cli/install/install.py @@ -333,7 +333,7 @@ def install( subprocess.run( "brew tap redis-stack/redis-stack", shell=True, check=True ) - subprocess.run("brew install redis-stack", shell=True, check=True) + subprocess.run("brew install redis-stack-server", shell=True, check=True) if load_database: if Path("/opt/homebrew/var/db/redis-stack/dump.rdb").exists(): cover_existing = ( From 33bfcdd7c932188de60c5fbee74ab5a384b22fc1 Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Mon, 21 Oct 2024 17:36:52 +0000 Subject: [PATCH 3/3] [autofix.ci] apply automated fixes --- sotopia/cli/install/install.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sotopia/cli/install/install.py b/sotopia/cli/install/install.py index 67ac65bd8..ea789aef0 100644 --- a/sotopia/cli/install/install.py +++ b/sotopia/cli/install/install.py @@ -333,7 +333,9 @@ def install( subprocess.run( "brew tap redis-stack/redis-stack", shell=True, check=True ) - subprocess.run("brew install redis-stack-server", shell=True, check=True) + subprocess.run( + "brew install redis-stack-server", shell=True, check=True + ) if load_database: if Path("/opt/homebrew/var/db/redis-stack/dump.rdb").exists(): cover_existing = (