Skip to content

Commit

Permalink
[6.16.z] Add Python 3.13 for PR checks in GHA (#1262)
Browse files Browse the repository at this point in the history
* Add Python 3.13 for PR checks in GHA

Signed-off-by: Gaurav Talreja <[email protected]>
(cherry picked from commit f7b8eed)

* Using Py3.13 for build/publish to PyPI GHA

---------

Co-authored-by: Gaurav Talreja <[email protected]>
  • Loading branch information
Satellite-QE and Gauravtalreja1 authored Feb 10, 2025
1 parent e4e91d9 commit da153e6
Show file tree
Hide file tree
Showing 3 changed files with 6 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@v4
Expand Down
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
],
packages=find_packages(exclude=['docs', 'tests']),
install_requires=REQUIREMENTS,
Expand Down

0 comments on commit da153e6

Please sign in to comment.