Skip to content

Commit 5258efa

Browse files
committed
fixing syntax issue
1 parent 590b682 commit 5258efa

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

quaddtype/pyproject.toml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,10 @@ test-extras = ["test"]
3232

3333
[tool.cibuildwheel.linux]
3434
before-all = """
35-
yum install -y wget &&
36-
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh &&
37-
bash miniconda.sh -b -p $HOME/miniconda &&
35+
set -ex
36+
yum install -y wget
37+
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh
38+
bash miniconda.sh -b -p $HOME/miniconda
3839
$HOME/miniconda/bin/conda install -y -c conda-forge sleef
3940
ls -l $HOME/miniconda/include/sleef.h
4041
"""
@@ -43,17 +44,17 @@ repair-wheel-command = "auditwheel repair -w {dest_dir} {wheel}"
4344

4445
[tool.cibuildwheel.macos]
4546
before-all = """
46-
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-MacOSX-x86_64.sh -O miniconda.sh &&
47-
bash miniconda.sh -b -p $HOME/miniconda &&
47+
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-MacOSX-x86_64.sh -O miniconda.sh
48+
bash miniconda.sh -b -p $HOME/miniconda
4849
$HOME/miniconda/bin/conda install -y -c conda-forge sleef
4950
ls -l $HOME/miniconda/include/sleef.h
5051
"""
5152
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"}
5253

5354
[tool.cibuildwheel.windows]
5455
before-all = """
55-
powershell -Command "Invoke-WebRequest -Uri https://repo.anaconda.com/miniconda/Miniconda3-latest-Windows-x86_64.exe -OutFile miniconda.exe" &&
56-
start /wait "" miniconda.exe /S /D=%UserProfile%\\Miniconda3 &&
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
5758
%UserProfile%\\Miniconda3\\Scripts\\conda install -y -c conda-forge sleef
5859
"""
5960
before-build = "pip install delvewheel"

0 commit comments

Comments
 (0)