From 10da05e2a64ae20db6ef351b3469039a352ce82d Mon Sep 17 00:00:00 2001 From: rdb Date: Wed, 30 Oct 2024 12:53:54 +0100 Subject: [PATCH] workflow: Skip Windows builds for Python 3.13 for now --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5d25208e35..69508618d3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,14 +33,17 @@ jobs: (cd thirdparty/darwin-libs-a && rm -rf rocket) - name: Set up Python 3.13 + if: runner.os != 'Windows' uses: actions/setup-python@v5 with: python-version: '3.13' - name: Build Python 3.13 + if: runner.os != 'Windows' shell: bash run: | python makepanda/makepanda.py --git-commit=${{github.sha}} --outputdir=built --everything --no-eigen --python-incdir="$pythonLocation/include" --python-libdir="$pythonLocation/lib" --verbose --threads=4 --windows-sdk=10 - name: Test Python 3.13 + if: runner.os != 'Windows' shell: bash run: | python -m pip install pytest setuptools