Skip to content

Commit

Permalink
ci: do not quote joined arguments to pip install
Browse files Browse the repository at this point in the history
  • Loading branch information
deepyaman authored and cpcloud committed Sep 7, 2023
1 parent ab01de0 commit 95f2f38
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ibis-backends.yml
Original file line number Diff line number Diff line change
Expand Up @@ -383,12 +383,12 @@ jobs:

- name: install other deps
if: matrix.backend.additional_deps != null
run: poetry run pip install "${{ join(matrix.backend.additional_deps, ' ') }}"
run: poetry run pip install ${{ join(matrix.backend.additional_deps, ' ') }}

# FIXME(deepyaman)
- name: install even more deps
if: matrix.backend.even_more_deps != null
run: poetry run pip install "${{ join(matrix.backend.even_more_deps, ' ') }}"
run: poetry run pip install ${{ join(matrix.backend.even_more_deps, ' ') }}

- name: show installed deps
run: poetry run pip list
Expand Down

0 comments on commit 95f2f38

Please sign in to comment.