From bea3d6c88971b78c85aef0767360f65919bba9ee Mon Sep 17 00:00:00 2001 From: phernandez Date: Fri, 14 Feb 2025 17:20:23 -0600 Subject: [PATCH] wtf setup python --- .github/workflows/release.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 43a07c51..13281efc 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -54,16 +54,14 @@ jobs: runs-on: macos-latest steps: - uses: actions/checkout@v4 - #with: - # ref: ${{ needs.release.outputs.tag }} - - - name: Set up Python - uses: actions/setup-python@v5 with: - python-version: '3.12' + submodules: true - - name: Install librsvg - run: brew install librsvg + - name: Set up Python "3.12" + uses: actions/setup-python@v4 + with: + python-version: "3.12" + cache: 'pip' - name: Install uv run: | @@ -71,9 +69,11 @@ jobs: - name: Create virtual env run: | - ls -la uv venv - uv pip install -e "..[dev]" + + - name: Install dependencies + run: | + uv pip install -e .[dev] - name: Build macOS installer run: |