From 221a9de3b225fb80c4a08a629985bdbde151442f Mon Sep 17 00:00:00 2001 From: Vauff Date: Sat, 24 Jan 2026 20:59:27 -0500 Subject: [PATCH] Fix missing setuptools in Windows CI --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8e38a0d..dfd6ba7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -44,7 +44,11 @@ jobs: path: ambuild - name: Install AMBuild + shell: bash run: | + if [ "$RUNNER_OS" == "Windows" ]; then + pip install setuptools + fi cd ambuild && python setup.py install && cd .. - name: Build