From 7f96e74d47ce5ab526c1b8e9395db0f304132454 Mon Sep 17 00:00:00 2001 From: priya-kinthali Date: Thu, 10 Oct 2024 13:12:42 +0530 Subject: [PATCH] ubuntu24-label-changes --- .github/workflows/e2e-tests.yml | 14 +++++++------- .github/workflows/test-python.yml | 8 ++++---- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/e2e-tests.yml b/.github/workflows/e2e-tests.yml index 8a8c31c1..83be2909 100644 --- a/.github/workflows/e2e-tests.yml +++ b/.github/workflows/e2e-tests.yml @@ -58,15 +58,15 @@ jobs: - name: Verify 3.12.4 run: python __tests__/verify-python.py 3.12.4 - - name: Run with setup-python 3.10.11 - id: cp310 + - name: Run with setup-python 3.12 + id: cp312 uses: ./ with: - python-version: '3.10.11' - - name: Verify 3.10.11 - run: python __tests__/verify-python.py 3.10.11 - - name: Run python-path sample 3.10.11 - run: pipx run --python '${{ steps.cp310.outputs.python-path }}' nox --version + python-version: '3.12' + - name: Verify 3.12 + run: python __tests__/verify-python.py 3.12 + - name: Run python-path sample 3.12 + run: pipx run --python '${{ steps.cp312.outputs.python-path }}' nox --version - name: Run with setup-python ==3.12 uses: ./ diff --git a/.github/workflows/test-python.yml b/.github/workflows/test-python.yml index f9c13e76..4904df79 100644 --- a/.github/workflows/test-python.yml +++ b/.github/workflows/test-python.yml @@ -206,7 +206,7 @@ jobs: run: python -c 'import math; print(math.factorial(5))' setup-pre-release-version-from-manifest: - name: Setup 3.13.0-alpha.6 ${{ matrix.os }} + name: Setup 3.13.0-beta.1 ${{ matrix.os }} runs-on: ${{ matrix.os }} strategy: fail-fast: false @@ -216,11 +216,11 @@ jobs: - name: Checkout uses: actions/checkout@v4 - - name: setup-python 3.13.0-alpha.6 + - name: setup-python 3.13.0-beta.1 id: setup-python uses: ./ with: - python-version: '3.13.0-alpha.6' + python-version: '3.13.0-beta.1' - name: Check python-path run: ./__tests__/check-python-path.sh '${{ steps.setup-python.outputs.python-path }}' @@ -229,7 +229,7 @@ jobs: - name: Validate version run: | $pythonVersion = (python --version) - if ("Python 3.13.0a6" -ne "$pythonVersion"){ + if ("Python 3.13.0b1" -ne "$pythonVersion"){ Write-Host "The current version is $pythonVersion; expected version is 3.13.0a6" exit 1 }