Skip to content

Commit

Permalink
Add Python 3.13 to the testing matrix (#127)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
ezio-melotti authored Jun 30, 2024
1 parent c9e3a13 commit d92a153
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
os: [windows-latest, macos-latest, ubuntu-latest]
steps:
- uses: actions/checkout@v4
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ dynamic = [
"version",
]
dependencies = [
"cffi>=v1.17.0rc1", # remove once v1.17.0 is out; add 3.13 classifier above (see #127)
"click>=6",
"gidgethub",
"requests",
Expand Down

0 comments on commit d92a153

Please sign in to comment.