Skip to content

Commit

Permalink
Update pip and install setuptools before running poetry install (to p…
Browse files Browse the repository at this point in the history
…ossibly alleviate setuptools legacy error)
  • Loading branch information
TheCleric committed Jun 21, 2024
1 parent a53f0a4 commit 562f5ca
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,12 @@ jobs:
shell: bash
run: poetry config virtualenvs.in-project true

- name: Update pip and install setuptools
shell: bash
run: |
pip install pip --upgrade
pip install setuptools
- name: Poetry check & build
shell: bash
run: poetry check && poetry build
Expand Down

0 comments on commit 562f5ca

Please sign in to comment.