Skip to content

Commit ad951f7

Browse files
authored
Add 3.13 to testing workflow and make 3.9 the min version (realpython#21)
1 parent 63620e0 commit ad951f7

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: actions/checkout@v4
1515
- uses: actions/setup-python@v5
1616
with:
17-
python-version: '3.12'
17+
python-version: '3.13'
1818
cache: 'pip'
1919

2020
- name: Install dependencies

.github/workflows/publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: Set up Python
1313
uses: actions/setup-python@v5
1414
with:
15-
python-version: '3.12'
15+
python-version: '3.13'
1616

1717
- name: Install dependencies
1818
run: |

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
16+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1717

1818
steps:
1919
- uses: actions/checkout@v4

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ classifiers = [
1616
]
1717
keywords = ["feed", "reader", "tutorial"]
1818
dependencies = ["feedparser", "html2text", 'tomli; python_version < "3.11"']
19-
requires-python = ">=3.7"
19+
requires-python = ">=3.9"
2020

2121
[project.optional-dependencies]
2222
build = ["build", "twine"]

0 commit comments

Comments
 (0)