Skip to content

Commit

Permalink
Specific Poetry version for Python3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
SofienBenAyed committed Aug 9, 2024
1 parent 2b2a638 commit 6d8b4fe
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,12 @@ jobs:
- uses: actions/checkout@v4

- name: Install poetry
run: pipx install poetry
run: |
if [ "${{ matrix.python_version }}" = "3.7" ]; then
pipx install poetry==1.6.0
else
pipx install poetry
fi
- name: Set up Python
id: setup-python
Expand Down

0 comments on commit 6d8b4fe

Please sign in to comment.