Skip to content

Commit

Permalink
Replace if with and in inline python expression
Browse files Browse the repository at this point in the history
  • Loading branch information
jesper-friis committed Aug 15, 2023
1 parent 8f502d5 commit c965bb3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci_build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ jobs:
# python -m pip install -U poetry
# ", check=True, shell=True)'
run: >
python -c 'import sys, subprocess; if sys.platform.startswith("linux"):
python -c 'import sys, subprocess; sys.platform.startswith("linux") and
subprocess.call(
"sudo apt install rustc && python -m pip install -U poetry",
check=True,
Expand Down

0 comments on commit c965bb3

Please sign in to comment.