Skip to content

Commit

Permalink
das-169: Pin poetry version to avoid pipeline failures (#264)
Browse files Browse the repository at this point in the history
  • Loading branch information
levisingularity authored Jan 7, 2025
1 parent 490ff1e commit d0876fb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:

- name: Install Poetry
run: |
pip install poetry
pip install poetry==1.8.4
poetry config pypi-token.pypi ${{ secrets.PYPI_API_TOKEN }}
- name: Build and Publishing library version in PyPI
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:

- name: Install dependencies
run: |-
pip3 install poetry
pip install poetry==1.8.4
poetry lock --no-update
poetry export --dev -f requirements.txt | pip3 install -r /dev/stdin
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:

- name: Install dependencies
run: |-
pip3 install poetry
pip install poetry==1.8.4
poetry lock --no-update
poetry export --dev -f requirements.txt | pip3 install -r /dev/stdin
Expand All @@ -84,7 +84,7 @@ jobs:

- name: Install dependencies
run: |-
pip3 install poetry
pip install poetry==1.8.4
poetry lock --no-update
poetry export --dev -f requirements.txt | pip3 install -r /dev/stdin
Expand All @@ -105,7 +105,7 @@ jobs:

- name: Install dependencies
run: |-
pip3 install poetry
pip install poetry==1.8.4
poetry lock --no-update
poetry export --dev -f requirements.txt | pip3 install -r /dev/stdin
Expand Down

0 comments on commit d0876fb

Please sign in to comment.