Skip to content

Commit 032efb2

Browse files
committed
CI: Test Python 3.13, drop support for Python 3.8
1 parent 1b4cfc4 commit 032efb2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/tests.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Set up Python
1919
uses: actions/setup-python@v4
2020
with:
21-
python-version: 3.12
21+
python-version: 3.13
2222
- run: pip install flake8 flake8-import-order doc8 Pygments
2323
- run: flake8 .
2424
- run: doc8 README.rst
@@ -29,11 +29,11 @@ jobs:
2929
strategy:
3030
matrix:
3131
python-version:
32-
- '3.8'
3332
- '3.9'
3433
- '3.10'
3534
- '3.11'
3635
- '3.12'
36+
- '3.13'
3737
steps:
3838
- name: Checkout
3939
uses: actions/checkout@v4

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description = """
44
A fake but stateful Stripe server that you can run locally, for \
55
testing purposes."""
66
readme = {file = "README.rst", content-type = "text/x-rst"}
7-
requires-python = ">=3.8"
7+
requires-python = ">=3.9"
88
license = {text = "GPL-3.0-or-later"}
99
authors = [{name = "Adrien Vergé"}]
1010
classifiers = [

0 commit comments

Comments
 (0)