From 33558c1eac176fe49e2ccb04ab59b36598ea1c1f Mon Sep 17 00:00:00 2001 From: Michael Peteuil Date: Sat, 15 Jul 2023 20:07:28 -0400 Subject: [PATCH] Use Python 3.11 / Poetry 1.5.1 in release workflow This just updates the versions used in the release workflow. Pretty minimal difference. --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index bdd6067..9e4ae3b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,13 +16,13 @@ jobs: - name: Checkout code uses: actions/checkout@v2 - - name: Set up Python 3.10 + - name: Set up Python 3.11 uses: actions/setup-python@v2 with: - python-version: "3.10" + python-version: "3.11" - name: Install Poetry - run: curl -sL https://raw.githubusercontent.com/python-poetry/poetry/1.2.0/install-poetry.py | python - -y + run: curl -sL https://raw.githubusercontent.com/python-poetry/poetry/1.5.1/install-poetry.py | python - -y - name: Update PATH run: echo "$HOME/.local/bin" >> $GITHUB_PATH