File tree Expand file tree Collapse file tree 1 file changed +11
-7
lines changed Expand file tree Collapse file tree 1 file changed +11
-7
lines changed Original file line number Diff line number Diff line change @@ -83,13 +83,17 @@ repair-wheel-command = "delocate-wheel -w {dest_dir} -v {wheel}"
83
83
84
84
[tool .cibuildwheel .windows ]
85
85
before-all = '''
86
- "C:\Program Files\PowerShell\7\pwsh.EXE" -command "& {Invoke-WebRequest -Uri 'https://repo.anaconda.com/miniconda/Miniconda3-latest-Windows-x86_64.exe' -OutFile 'miniconda.exe'}"
87
- Start-Process -FilePath 'miniconda.exe' -ArgumentList '/S','/D=$env:UserProfile\\Miniconda3' -Wait
88
- $env:PATH = '$env:UserProfile\\Miniconda3;$env:UserProfile\\Miniconda3\\Scripts;$env:UserProfile\\Miniconda3\\Library\\bin;$env:PATH
89
- $env:UserProfile\\Miniconda3\\Scripts\\activate.ps1
90
- conda config --add channels conda-forge
91
- conda config --set channel_priority strict
92
- conda install -y -c conda-forge sleef
86
+ "C:\\Program Files\\PowerShell\\7\\pwsh.EXE" -Command "& {
87
+ Invoke-WebRequest -Uri 'https://repo.anaconda.com/miniconda/Miniconda3-latest-Windows-x86_64.exe' -OutFile 'miniconda.exe'
88
+ Start-Process -FilePath 'miniconda.exe' -ArgumentList '/S','/D=$env:UserProfile\\Miniconda3' -Wait
89
+ $env:PATH = '$env:UserProfile\\Miniconda3;$env:UserProfile\\Miniconda3\\Scripts;$env:UserProfile\\Miniconda3\\Library\\bin;' + $env:PATH
90
+ & $env:UserProfile\\Miniconda3\\Scripts\\activate.ps1
91
+ conda config --add channels conda-forge
92
+ conda config --set channel_priority strict
93
+ conda install -y -c conda-forge sleef
94
+ Write-Host 'PATH:' $env:PATH
95
+ Get-Command python | Format-List
96
+ }"
93
97
'''
94
98
before-build = " pip install delvewheel"
95
99
repair-wheel-command = " delvewheel repair -w {dest_dir} {wheel} --add-path %UserProfile%\\ Miniconda3\\ Library\\ bin"
You can’t perform that action at this time.
0 commit comments