Skip to content

Commit 777eb5c

Browse files
authored
Merge pull request #76 from python-project-templates/copier-update-2026-06-14T08-37-43
Update from copier (2026-06-14T08:37:43)
2 parents 6309c6f + 396ba43 commit 777eb5c

2 files changed

Lines changed: 5 additions & 5 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: 19e0124
33
_src_path: https://github.com/python-project-templates/base.git
44
add_docs: true
55
add_extension: cpp

.github/workflows/build.yaml

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

7272
- name: Install dependencies
7373
run: |
74-
call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
74+
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"
7575
make develop
7676
shell: cmd
7777
if: matrix.os == 'windows-latest'
@@ -101,7 +101,7 @@ jobs:
101101
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.11'
102102

103103
- name: Upload coverage
104-
uses: codecov/codecov-action@e79a6962e0d4c0c17b229090214935d2e33f8354 # v6.0.1
104+
uses: codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f # v7.0.0
105105
with:
106106
token: ${{ secrets.CODECOV_TOKEN }}
107107

@@ -131,12 +131,12 @@ jobs:
131131
- name: Make dist (Windows)
132132
run: |
133133
if exist dist rmdir /s /q dist
134-
call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
134+
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"
135135
make dist-py-wheel
136136
shell: cmd
137137
env:
138138
CIBW_BUILD: "${{ matrix.cibuildwheel }}-win_amd64"
139-
CIBW_BEFORE_ALL: call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
139+
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"
140140
if: matrix.os == 'windows-latest'
141141

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

0 commit comments

Comments
 (0)