Skip to content

Commit 6547b77

Browse files
committed
Add support for Python 3.13, drop Python 3.8
Signed-off-by: Stephen Finucane <[email protected]>
1 parent f9fa21c commit 6547b77

File tree

4 files changed

+13
-6
lines changed

4 files changed

+13
-6
lines changed

.github/workflows/ci.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Set up Python
1616
uses: actions/setup-python@v5
1717
with:
18-
python-version: '3.12'
18+
python-version: '3.13'
1919
- name: Install dependencies
2020
run: python -m pip install tox
2121
- name: Run tox
@@ -25,7 +25,7 @@ jobs:
2525
runs-on: ubuntu-latest
2626
strategy:
2727
matrix:
28-
python: ['3.8', '3.9', '3.10', '3.11', '3.12']
28+
python: ['3.9', '3.10', '3.11', '3.12', '3.13']
2929
steps:
3030
- name: Checkout source code
3131
uses: actions/checkout@v4
@@ -49,7 +49,7 @@ jobs:
4949
- name: Set up Python
5050
uses: actions/setup-python@v5
5151
with:
52-
python-version: '3.12'
52+
python-version: '3.13'
5353
- name: Install dependencies
5454
run: python -m pip install tox
5555
- name: Build docs (via tox)
@@ -73,7 +73,7 @@ jobs:
7373
- name: Set up Python
7474
uses: actions/setup-python@v5
7575
with:
76-
python-version: '3.12'
76+
python-version: '3.13'
7777
- name: Install dependencies
7878
run: python -m pip install build
7979
- name: Build a binary wheel and a source tarball
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
features:
3+
- |
4+
Python 3.13 is now officially supported and tested.
5+
upgrade:
6+
- |
7+
Python 3.8 is no longer supported.

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ project_urls =
2323
Bug Tracker = https://github.com/getpatchwork/git-pw/issues
2424
Source Code = https://github.com/getpatchwork/git-pw
2525
Documentation = https://git-pw.readthedocs.io
26-
python_requires = >=3.8
26+
python_requires = >=3.9
2727

2828
[files]
2929
packages =

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
minversion = 3.1
3-
envlist = pep8,mypy,clean,py{38,39,310,311,312},report
3+
envlist = pep8,mypy,clean,py{39,310,311,312,313},report
44

55
[testenv]
66
deps =

0 commit comments

Comments
 (0)