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 }} diff --git a/sotopia/cli/install/install.py b/sotopia/cli/install/install.py index 0c7bfee04..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", 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 = (