From 25d2f1e3c15bb2ec730b7a3794a5ee4e41edbc37 Mon Sep 17 00:00:00 2001 From: "S.Lott" Date: Tue, 21 May 2024 09:58:08 -0400 Subject: [PATCH] Update ci.yaml to fix versions --- .github/workflows/ci.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 7de75c4..3b586e9 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -4,8 +4,8 @@ on: push: pull_request: env: - POETRY_VERSION: "1.5.1" - DEFAULT_PY_VERSION: "3.11" + POETRY_VERSION: "1.8.3" + DEFAULT_PY_VERSION: "3.12" jobs: Lint: @@ -14,7 +14,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-python@v1 with: - python-version: 3.12 + python-version: ${{ env.DEFAULT_PY_VERSION }} - name: Linting env: RUFF_OUTPUT_FORMAT: github @@ -43,7 +43,7 @@ jobs: - uses: actions/checkout@v2 - name: Install poetry shell: bash - run: pipx install poetry==${{ inputs.poetry-version }} + run: pipx install poetry==${{ env.POETRY_VERSION }} - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v1 @@ -70,7 +70,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-python@v1 with: - python-version: 3.8 + python-version: ${{ env.DEFAULT_PY_VERSION }} - name: Install Test Runner run: |