From 74ef9a1da5165c764a7d6037913308cedbaea98a Mon Sep 17 00:00:00 2001 From: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 14 Jun 2026 20:36:12 +0000 Subject: [PATCH] Update from copier (2026-06-14T20:36:12) Signed-off-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com> --- .copier-answers.yaml | 2 +- .github/workflows/build.yaml | 8 ++++---- js/playwright.config.js | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.copier-answers.yaml b/.copier-answers.yaml index bde2926..7bc4c97 100644 --- a/.copier-answers.yaml +++ b/.copier-answers.yaml @@ -1,5 +1,5 @@ # Changes here will be overwritten by Copier -_commit: 9b3c202 +_commit: 5189ff2 _src_path: https://github.com/python-project-templates/base.git add_docs: true add_extension: cppjswasm diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 1bfdc36..729c268 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -53,7 +53,7 @@ jobs: - name: Install dependencies run: | - call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvars64.bat" + for /f "usebackq tokens=*" %%i in (`vswhere -latest -products * -requires Microsoft.VisualStudio.Component.VC.Tools.x86.x64 -property installationPath`) do call "%%i\VC\Auxiliary\Build\vcvars64.bat" make develop shell: cmd if: matrix.os == 'windows-latest' @@ -83,7 +83,7 @@ jobs: if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.11' - name: Upload coverage - uses: codecov/codecov-action@e79a6962e0d4c0c17b229090214935d2e33f8354 # v6.0.1 + uses: codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f # v7.0.0 with: token: ${{ secrets.CODECOV_TOKEN }} @@ -113,12 +113,12 @@ jobs: - name: Make dist (Windows) run: | if exist dist rmdir /s /q dist - call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvars64.bat" + for /f "usebackq tokens=*" %%i in (`vswhere -latest -products * -requires Microsoft.VisualStudio.Component.VC.Tools.x86.x64 -property installationPath`) do call "%%i\VC\Auxiliary\Build\vcvars64.bat" make dist-py-wheel shell: cmd env: CIBW_BUILD: "${{ matrix.cibuildwheel }}-win_amd64" - CIBW_BEFORE_ALL: call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvars64.bat" + CIBW_BEFORE_ALL: for /f "usebackq tokens=*" %i in (`vswhere -latest -products * -requires Microsoft.VisualStudio.Component.VC.Tools.x86.x64 -property installationPath`) do call "%i\VC\Auxiliary\Build\vcvars64.bat" if: matrix.os == 'windows-latest' - uses: actions-ext/python/test-wheel@main diff --git a/js/playwright.config.js b/js/playwright.config.js index e49718b..ad9dded 100644 --- a/js/playwright.config.js +++ b/js/playwright.config.js @@ -22,7 +22,7 @@ export default defineConfig({ }, ], webServer: { - command: "yarn start:tests", + command: "pnpm run start:tests", url: "http://127.0.0.1:3000", reuseExistingServer: !process.env.CI, timeout: 120 * 1000,