Skip to content

Commit d92a153

Browse files
authored
Add Python 3.13 to the testing matrix (#127)
* Add Python 3.13 to the testing matrix * Try updating cffi * Add comment about cffi and update Python version classifier * Use `>=` instead of `==` for `cffi` * Appease the linter * Halve pre-commit whitespace * Remove 3.13 classifier and update comment
1 parent c9e3a13 commit d92a153

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
14+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
1515
os: [windows-latest, macos-latest, ubuntu-latest]
1616
steps:
1717
- uses: actions/checkout@v4

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ dynamic = [
2626
"version",
2727
]
2828
dependencies = [
29+
"cffi>=v1.17.0rc1", # remove once v1.17.0 is out; add 3.13 classifier above (see #127)
2930
"click>=6",
3031
"gidgethub",
3132
"requests",

0 commit comments

Comments
 (0)