Skip to content

Commit 028a62f

Browse files
committed
trying to resolve path intereference with cibuildwheel
1 parent 26f64ea commit 028a62f

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

quaddtype/pyproject.toml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,19 +35,17 @@ before-all = """
3535
yum install -y wget &&
3636
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh &&
3737
bash miniconda.sh -b -p $HOME/miniconda &&
38-
export PATH=$HOME/miniconda/bin:$PATH &&
39-
conda install -y -c conda-forge sleef
38+
$HOME/miniconda/bin/conda install -y -c conda-forge sleef
4039
"""
41-
environment = {PATH = "$HOME/miniconda/bin:$PATH", LD_LIBRARY_PATH = "$HOME/miniconda/lib:$LD_LIBRARY_PATH"}
40+
environment = {LD_LIBRARY_PATH = "$HOME/miniconda/lib:$LD_LIBRARY_PATH"}
4241

4342
[tool.cibuildwheel.macos]
4443
before-all = """
4544
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-MacOSX-x86_64.sh -O miniconda.sh &&
4645
bash miniconda.sh -b -p $HOME/miniconda &&
47-
export PATH=$HOME/miniconda/bin:$PATH &&
48-
conda install -y -c conda-forge sleef
46+
$HOME/miniconda/bin/conda install -y -c conda-forge sleef
4947
"""
50-
environment = {PATH = "$HOME/miniconda/bin:$PATH", DYLD_LIBRARY_PATH = "$HOME/miniconda/lib:$DYLD_LIBRARY_PATH"}
48+
environment = {DYLD_LIBRARY_PATH = "$HOME/miniconda/lib:$DYLD_LIBRARY_PATH"}
5149

5250
# [tool.cibuildwheel.windows]
5351
# before-all = """

0 commit comments

Comments
 (0)