diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index ea9bed7d..647312aa 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -2,7 +2,7 @@ "name": "Default Linux Universal", "image": "mcr.microsoft.com/devcontainers/universal:2-linux", "features": { - "ghcr.io/devcontainers-contrib/features/poetry:1": {} + "ghcr.io/devcontainers-contrib/features/poetry:2": {} }, "postCreateCommand": "poetry config virtualenvs.in-project true && poetry install -E all && poetry run pre-commit install && yarn install", "customizations": { diff --git a/.github/actions/setup-python/action.yml b/.github/actions/setup-python/action.yml index 9f987073..fef50f78 100644 --- a/.github/actions/setup-python/action.yml +++ b/.github/actions/setup-python/action.yml @@ -11,7 +11,7 @@ runs: using: "composite" steps: - name: Install poetry - run: pipx install poetry + run: pipx install poetry==1.3.2 shell: bash - uses: actions/setup-python@v4