Skip to content

Commit

Permalink
ci: fix poetry version to 1.5.1 (#91)
Browse files Browse the repository at this point in the history
Signed-off-by: ktro2828 <[email protected]>
  • Loading branch information
ktro2828 authored Sep 19, 2023
1 parent d7d1026 commit 35d5ecb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build-and-test-mock.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ jobs:

- name: Install dependencies
run: |
curl -sSL https://install.python-poetry.org | python -
: # NOTE: In Python3.7.11, failed to install poetry>=1.6.1
curl -sSL https://install.python-poetry.org | POETRY_VERSION=1.5.1 python -
echo "$HOME/.local/bin" >> $GITHUB_PATH
poetry install
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/build-and-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ jobs:

- name: Install dependencies
run: |
curl -sSL https://install.python-poetry.org | python -
: # NOTE: In Python3.7.11, failed to install poetry>=1.6.1
curl -sSL https://install.python-poetry.org | POETRY_VERSION=1.5.1 python -
echo "$HOME/.local/bin" >> $GITHUB_PATH
poetry install
Expand Down

0 comments on commit 35d5ecb

Please sign in to comment.