Skip to content

Commit

Permalink
Use Python 3.13 base for most checks (#1098)
Browse files Browse the repository at this point in the history
  • Loading branch information
bharat-thotakura authored Oct 31, 2024
1 parent 0b08ce0 commit 217e372
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 19 deletions.
34 changes: 17 additions & 17 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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 }}
Expand All @@ -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 }}
Expand All @@ -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 }}
Expand All @@ -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
Expand Down Expand Up @@ -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 }}
Expand Down Expand Up @@ -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 }}
Expand Down Expand Up @@ -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
Expand All @@ -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 }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/daily-integration-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 217e372

Please sign in to comment.