From 217e3722775ede9a1cdabae516c4794900941eb6 Mon Sep 17 00:00:00 2001 From: Bharath Thotakura <113555655+bharat-thotakura@users.noreply.github.com> Date: Thu, 31 Oct 2024 13:24:56 -0500 Subject: [PATCH] Use Python 3.13 base for most checks (#1098) --- .github/workflows/ci.yml | 34 +++++++++---------- .github/workflows/daily-integration-check.yml | 4 +-- 2 files changed, 19 insertions(+), 19 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index eebf0386f..79c7c3bce 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,10 +22,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - name: Set up Python 3.12 + - name: Set up Python 3.13 uses: actions/setup-python@v5 with: - python-version: 3.12 + python-version: 3.13 - uses: actions/cache@v4 with: path: ${{ env.pythonLocation }} @@ -43,10 +43,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - name: Set up Python 3.12 + - name: Set up Python 3.13 uses: actions/setup-python@v5 with: - python-version: 3.12 + python-version: 3.13 - uses: actions/cache@v4 with: path: ${{ env.pythonLocation }} @@ -64,10 +64,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - name: Set up Python 3.12 + - name: Set up Python 3.13 uses: actions/setup-python@v5 with: - python-version: 3.12 + python-version: 3.13 - uses: actions/cache@v4 with: path: ${{ env.pythonLocation }} @@ -85,10 +85,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - name: Set up Python 3.12 + - name: Set up Python 3.13 uses: actions/setup-python@v5 with: - python-version: 3.12 + python-version: 3.13 - uses: actions/cache@v4 with: path: ${{ env.pythonLocation }} @@ -105,7 +105,7 @@ jobs: name: Pytest and Coverage check strategy: matrix: - python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"] runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 @@ -159,10 +159,10 @@ jobs: runs-on: macos-latest steps: - uses: actions/checkout@v4 - - name: Set up Python 3.12 + - name: Set up Python 3.13 uses: actions/setup-python@v5 with: - python-version: 3.12 + python-version: 3.13 - uses: actions/cache@v4 with: path: ${{ env.pythonLocation }} @@ -203,10 +203,10 @@ jobs: timeout-minutes: 6 steps: - uses: actions/checkout@v4 - - name: Set up Python 3.12 + - name: Set up Python 3.13 uses: actions/setup-python@v5 with: - python-version: 3.12 + python-version: 3.13 - uses: actions/cache@v4 with: path: ${{ env.pythonLocation }} @@ -238,10 +238,10 @@ jobs: name: Notebook check for ${{ matrix.type }} steps: - uses: actions/checkout@v4 - - name: Set up Python 3.12 + - name: Set up Python 3.13 uses: actions/setup-python@v5 with: - python-version: 3.12 + python-version: 3.13 - name: Install dependencies run: | python -m pip install --upgrade pip @@ -256,10 +256,10 @@ jobs: timeout-minutes: 8 steps: - uses: actions/checkout@v4 - - name: Set up Python 3.11 + - name: Set up Python 3.13 uses: actions/setup-python@v5 with: - python-version: "3.11" + python-version: "3.13" - uses: actions/cache@v4 with: path: ${{ env.pythonLocation }} diff --git a/.github/workflows/daily-integration-check.yml b/.github/workflows/daily-integration-check.yml index b9dbe7ddf..aa9e215a3 100644 --- a/.github/workflows/daily-integration-check.yml +++ b/.github/workflows/daily-integration-check.yml @@ -15,10 +15,10 @@ jobs: timeout-minutes: 15 steps: - uses: actions/checkout@v4 - - name: Set up Python 3.12 + - name: Set up Python 3.13 uses: actions/setup-python@v5 with: - python-version: 3.12 + python-version: 3.13 - name: Install dependencies run: | python -m pip install --upgrade pip