From 80ab5a6221eaa02ba72f719ca3e15aca0af68693 Mon Sep 17 00:00:00 2001 From: priya-kinthali Date: Thu, 10 Oct 2024 17:53:49 +0530 Subject: [PATCH] ubuntu24-label-changes --- .github/workflows/test-python.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/test-python.yml b/.github/workflows/test-python.yml index 4904df79..c0a7eacc 100644 --- a/.github/workflows/test-python.yml +++ b/.github/workflows/test-python.yml @@ -240,49 +240,49 @@ jobs: run: python -c 'import math; print(math.factorial(5))' setup-dev-version: - name: Setup 3.13-dev ${{ matrix.os }} + name: Setup 3.14-dev ${{ matrix.os }} runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: - os: [ubuntu-latest, windows-latest, macos-latest, macos-13] + os: [ubuntu-latest] steps: - name: Checkout uses: actions/checkout@v4 - - name: setup-python 3.13-dev + - name: setup-python 3.14-dev id: setup-python uses: ./ with: - python-version: '3.13-dev' + python-version: '3.14-dev' - name: Check python-path run: ./__tests__/check-python-path.sh '${{ steps.setup-python.outputs.python-path }}' shell: bash - name: Validate version - run: ${{ startsWith(steps.setup-python.outputs.python-version, '3.13.') }} + run: ${{ startsWith(steps.setup-python.outputs.python-version, '3.14.') }} shell: bash - name: Run simple code run: python -c 'import math; print(math.factorial(5))' setup-prerelease-version: - name: Setup 3.13 ${{ matrix.os }} + name: Setup 3.14 ${{ matrix.os }} runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: - os: [ubuntu-latest, windows-latest, macos-latest, macos-13] + os: [ubuntu-latest] steps: - name: Checkout uses: actions/checkout@v4 - - name: setup-python 3.13 + - name: setup-python 3.14 id: setup-python uses: ./ with: - python-version: '3.13' + python-version: '3.14' allow-prereleases: true - name: Check python-path @@ -290,7 +290,7 @@ jobs: shell: bash - name: Validate version - run: ${{ startsWith(steps.setup-python.outputs.python-version, '3.13.') }} + run: ${{ startsWith(steps.setup-python.outputs.python-version, '3.14.') }} shell: bash - name: Run simple code