Skip to content

Commit

Permalink
Update poetry version (#1752)
Browse files Browse the repository at this point in the history
* Update poetry version

* Update poetry version

* Update poetry version
  • Loading branch information
koxudaxi authored Dec 2, 2023
1 parent 1604379 commit 6cd17e1
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,14 +55,24 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
- name: Install old Poetry
uses: snok/install-poetry@v1
if: matrix.python-version == '3.7'
with:
version: 1.4.2
virtualenvs-path: .venv
virtualenvs-create: true
virtualenvs-in-project: true
installer-parallel: true
- name: Install Poetry
uses: snok/install-poetry@v1
if: matrix.python-version != '3.7'
with:
version: 1.7.1
virtualenvs-path: .venv
virtualenvs-create: true
virtualenvs-in-project: true
installer-parallel: true
- name: Load cached venv
id: cached-poetry-dependencies
uses: actions/cache@v2
Expand Down

0 comments on commit 6cd17e1

Please sign in to comment.