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 : 5189ff2
33_src_path : https://github.com/python-project-templates/base.git
44add_docs : true
55add_extension : cppjswasm
Original file line number Diff line number Diff line change 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'
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
Original file line number Diff line number Diff 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 ,
You can’t perform that action at this time.
0 commit comments