From db754a5765f59ae4962e0f79d145043f03b7e54f Mon Sep 17 00:00:00 2001 From: Michael Tryby Date: Mon, 1 Dec 2025 16:54:45 -0500 Subject: [PATCH] Enable submodule checkout in sdist build workflow Checking out the submodule fixes the sdist build --- .github/workflows/build_wheel.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build_wheel.yml b/.github/workflows/build_wheel.yml index def381cc..35502178 100644 --- a/.github/workflows/build_wheel.yml +++ b/.github/workflows/build_wheel.yml @@ -46,6 +46,8 @@ jobs: steps: - name: Checkout repo uses: actions/checkout@v5 + with: + submodules: true - name: Install Python uses: actions/setup-python@v5 with: