From 6cd17e195ff73534a2d24bf4207a1fd8718eba84 Mon Sep 17 00:00:00 2001 From: Koudai Aono Date: Sun, 3 Dec 2023 02:50:00 +0900 Subject: [PATCH] Update poetry version (#1752) * Update poetry version * Update poetry version * Update poetry version --- .github/workflows/test.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3b4234384..717a343e1 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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