Skip to content

Commit

Permalink
CI: Test Python 3.13, drop support for Python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
adrienverge committed Oct 19, 2024
1 parent 1b4cfc4 commit ede6405
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.12
python-version: 3.13
- run: pip install flake8 flake8-import-order doc8 Pygments
- run: flake8 .
- run: doc8 README.rst
Expand All @@ -29,11 +29,11 @@ jobs:
strategy:
matrix:
python-version:
- '3.8'
- '3.9'
- '3.10'
- '3.11'
- '3.12'
- '3.13'
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description = """
A fake but stateful Stripe server that you can run locally, for \
testing purposes."""
readme = {file = "README.rst", content-type = "text/x-rst"}
requires-python = ">=3.8"
requires-python = ">=3.9"
license = {text = "GPL-3.0-or-later"}
authors = [{name = "Adrien Vergé"}]
classifiers = [
Expand Down

0 comments on commit ede6405

Please sign in to comment.