Skip to content

Commit 74ef9a1

Browse files
Update from copier (2026-06-14T20:36:12)
Signed-off-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 6c3ee75 commit 74ef9a1

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

.copier-answers.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Changes here will be overwritten by Copier
2-
_commit: 9b3c202
2+
_commit: 5189ff2
33
_src_path: https://github.com/python-project-templates/base.git
44
add_docs: true
55
add_extension: cppjswasm

.github/workflows/build.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353

5454
- name: Install dependencies
5555
run: |
56-
call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
56+
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"
5757
make develop
5858
shell: cmd
5959
if: matrix.os == 'windows-latest'
@@ -83,7 +83,7 @@ jobs:
8383
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.11'
8484

8585
- name: Upload coverage
86-
uses: codecov/codecov-action@e79a6962e0d4c0c17b229090214935d2e33f8354 # v6.0.1
86+
uses: codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f # v7.0.0
8787
with:
8888
token: ${{ secrets.CODECOV_TOKEN }}
8989

@@ -113,12 +113,12 @@ jobs:
113113
- name: Make dist (Windows)
114114
run: |
115115
if exist dist rmdir /s /q dist
116-
call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
116+
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"
117117
make dist-py-wheel
118118
shell: cmd
119119
env:
120120
CIBW_BUILD: "${{ matrix.cibuildwheel }}-win_amd64"
121-
CIBW_BEFORE_ALL: call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
121+
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"
122122
if: matrix.os == 'windows-latest'
123123

124124
- uses: actions-ext/python/test-wheel@main

js/playwright.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export default defineConfig({
2222
},
2323
],
2424
webServer: {
25-
command: "yarn start:tests",
25+
command: "pnpm run start:tests",
2626
url: "http://127.0.0.1:3000",
2727
reuseExistingServer: !process.env.CI,
2828
timeout: 120 * 1000,

0 commit comments

Comments
 (0)