Skip to content

Commit

Permalink
[6.14.z] Add Python 3.13 for PR checks in GHA
Browse files Browse the repository at this point in the history
(cherry picked from commit 8753c80)
  • Loading branch information
Gauravtalreja1 committed Feb 10, 2025
1 parent 5468ecd commit e8738a4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/merge_to_master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10', '3.11', '3.12']
python-version: ['3.10', '3.11', '3.12', '3.13']
steps:
- name: Checkout Nailgun
uses: actions/checkout@v4
Expand Down Expand Up @@ -61,10 +61,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Setup python 3.10
- name: Setup python
uses: actions/setup-python@v5
with:
python-version: '3.10'
python-version: '3.13'
- name: Install pypa/build
run: python -m pip install build --user
- name: Build a binary wheel and a source tarball
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull_requests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10', '3.11', '3.12']
python-version: ['3.10', '3.11', '3.12', '3.13']
steps:
- name: Checkout Nailgun
uses: actions/checkout@v2
Expand Down

0 comments on commit e8738a4

Please sign in to comment.