From 10dc525773adc723b07fc4a03b709a424026f57f Mon Sep 17 00:00:00 2001 From: Andrew Starr-Bochicchio Date: Mon, 16 Oct 2023 10:44:39 -0400 Subject: [PATCH] Update poetry version used in Python client validation (#834) Updates the poetry version used in Python client validation to match the one used by pydo itself. See: https://github.com/digitalocean/pydo/pull/237 Resolves errors like: ``` The lock file is not compatible with the current version of Poetry. Upgrade Poetry to be able to read the lock file or, alternatively, regenerate the lock file with the `poetry lock` command. ``` https://github.com/digitalocean/openapi/actions/runs/6526929286/job/17721187808#step:7:13 --- .github/workflows/validate-client-generation.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/validate-client-generation.yml b/.github/workflows/validate-client-generation.yml index 6ed1b6d3..87dc91b1 100644 --- a/.github/workflows/validate-client-generation.yml +++ b/.github/workflows/validate-client-generation.yml @@ -40,7 +40,7 @@ jobs: - name: Install Poetry uses: snok/install-poetry@v1.3.1 with: - version: 1.1.13 + version: 1.6.1 virtualenvs-path: .venv virtualenvs-create: true virtualenvs-in-project: true