Skip to content

Commit 04f3eb4

Browse files
Update from copier (2026-06-17T16:29:18)
Signed-off-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 973ca62 commit 04f3eb4

3 files changed

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

.github/workflows/build.yaml

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

4747
- name: Install dependencies
4848
run: |
49-
call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
49+
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"
5050
make develop
5151
shell: cmd
5252
if: matrix.os == 'windows-latest'
@@ -76,7 +76,7 @@ jobs:
7676
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.11'
7777

7878
- name: Upload coverage
79-
uses: codecov/codecov-action@e79a6962e0d4c0c17b229090214935d2e33f8354 # v6.0.1
79+
uses: codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f # v7.0.0
8080
with:
8181
token: ${{ secrets.CODECOV_TOKEN }}
8282

@@ -106,12 +106,12 @@ jobs:
106106
- name: Make dist (Windows)
107107
run: |
108108
if exist dist rmdir /s /q dist
109-
call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
109+
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"
110110
make dist-py-wheel
111111
shell: cmd
112112
env:
113113
CIBW_BUILD: "${{ matrix.cibuildwheel }}-win_amd64"
114-
CIBW_BEFORE_ALL: call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
114+
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"
115115
if: matrix.os == 'windows-latest'
116116

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

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,8 +147,8 @@ emsdk
147147
.DS_Store
148148

149149
# Hydra
150-
outputs/
151-
multirun/
150+
/outputs/
151+
/multirun/
152152

153153
# AI
154154
ROADMAP.md

0 commit comments

Comments
 (0)