File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
44add_docs : true
55add_extension : cpp
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments