Skip to content

Commit

Permalink
chore: pin poetry version (#937)
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasvinclav authored Jan 5, 2025
1 parent 1f79a8c commit db5dcb5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM mcr.microsoft.com/devcontainers/python:3.12

ENV PYTHONUNBUFFERED 1

RUN pip install poetry
RUN pip install poetry==1.8

RUN poetry config virtualenvs.create false

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
python-version: "3.10"
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python - -y
pip install poetry==1.8
poetry install
- name: Release
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
run: curl -sSL https://install.python-poetry.org | python - -y
run: pip install poetry==1.8
- name: Install dependencies
run: poetry install --with=test
- name: Run tox targets for ${{ matrix.python-version }}
Expand Down

0 comments on commit db5dcb5

Please sign in to comment.