@@ -40,7 +40,7 @@ $HOME/miniconda/bin/conda install -y -c conda-forge sleef
40
40
ls -l $HOME/miniconda/include/sleef.h
41
41
"""
42
42
environment = { LD_LIBRARY_PATH = " $HOME/miniconda/lib:$LD_LIBRARY_PATH" , LIBRARY_PATH = " $HOME/miniconda/lib:$LIBRARY_PATH" , CFLAGS = " -I$HOME/miniconda/include $CFLAGS" , CXXFLAGS = " -I$HOME/miniconda/include $CXXFLAGS" , LDFLAGS = " -L$HOME/miniconda/lib $LDFLAGS" }
43
- repair-wheel-command = " auditwheel repair -w {dest_dir} {wheel}"
43
+ repair-wheel-command = " auditwheel repair -w {dest_dir} --plat manylinux_2_28_x86_64 {wheel}"
44
44
45
45
[tool .cibuildwheel .macos ]
46
46
before-all = """
@@ -52,11 +52,12 @@ ls -l $HOME/miniconda/include/sleef.h
52
52
environment = {DYLD_LIBRARY_PATH = " $HOME/miniconda/lib:$DYLD_LIBRARY_PATH" , LIBRARY_PATH = " $HOME/miniconda/lib:$LIBRARY_PATH" , CFLAGS = " -I$HOME/miniconda/include $CFLAGS" , CXXFLAGS = " -I$HOME/miniconda/include $CXXFLAGS" , LDFLAGS = " -L$HOME/miniconda/lib $LDFLAGS" }
53
53
54
54
[tool .cibuildwheel .windows ]
55
- before-all = """
56
- powershell -Command "Invoke-WebRequest -Uri https://repo.anaconda.com/miniconda/Miniconda3-latest-Windows-x86_64.exe -OutFile miniconda.exe"
57
- start /wait "" miniconda.exe /S /D=%UserProfile%\\ Miniconda3
58
- %UserProfile%\\ Miniconda3\\ Scripts\\ conda install -y -c conda-forge sleef
59
- """
55
+ before-all = [
56
+ " powershell -Command \" Invoke-WebRequest -Uri https://repo.anaconda.com/miniconda/Miniconda3-latest-Windows-x86_64.exe -OutFile miniconda.exe\" " ,
57
+ " start /wait \"\" miniconda.exe /S /D=%UserProfile%\\ Miniconda3" ,
58
+ " %UserProfile%\\ Miniconda3\\ Scripts\\ activate.bat" ,
59
+ " %UserProfile%\\ Miniconda3\\ Scripts\\ conda.exe install -y -c conda-forge sleef"
60
+ ]
60
61
before-build = " pip install delvewheel"
61
62
repair-wheel-command = " delvewheel repair -w {dest_dir} {wheel} --verbose || echo 'Repair failed, continuing anyway'"
62
63
environment = { LIBRARY_PATH = " %UserProfile%\\ Miniconda3\\ Library\\ lib;%LIBRARY_PATH%" , INCLUDE = " %UserProfile%\\ Miniconda3\\ Library\\ include;%INCLUDE%" , LIB = " %UserProfile%\\ Miniconda3\\ Library\\ lib;%LIB%" }
0 commit comments