Skip to content

Commit

Permalink
Remove pipx to fix python build error
Browse files Browse the repository at this point in the history
  • Loading branch information
danyeaw committed Jan 11, 2024
1 parent 3f72b0f commit 04a848d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
uses: pre-commit/action@646c83fcd040023954eafda54b4db0192ce70507 # v3.0.0
- name: Check Poetry lock file integrity
run: |
pipx install --python python${{ env.python-version }} --pip-args=--constraint=.github/constraints.txt poetry
python${{ env.python-version }} -m pip install --constraint=.github/constraints.txt poetry
poetry config virtualenvs.in-project true
poetry check
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
sudo apt install -qq --no-install-recommends gir1.2-gtk-4.0 libgirepository1.0-dev
- name: Install Poetry
run: |
pipx install --python python${{ matrix.python-version }} --pip-args=--constraint=.github/constraints.txt poetry
python${{ matrix.python-version }} -m pip install --constraint=.github/constraints.txt poetry
poetry config virtualenvs.in-project true
- name: Collect Project Data
id: meta
Expand Down

0 comments on commit 04a848d

Please sign in to comment.