Skip to content

Commit 72cbb72

Browse files
committed
Add support for Python 3.13
1 parent b8f2646 commit 72cbb72

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
test:
77
strategy:
88
matrix:
9-
python: ['3.9', '3.10', '3.11', '3.12']
9+
python: ['3.9', '3.10', '3.11', '3.12', '3.13']
1010
runs-on: ubuntu-latest
1111
steps:
1212
- uses: actions/checkout@v4
@@ -25,7 +25,7 @@ jobs:
2525
dbus-run-session -- coverage run -a tests/run_tests.py libsecret/libsecret/mock-service-only-plain.py
2626
dbus-run-session -- coverage run -a tests/run_tests.py libsecret/libsecret/mock-service-lock.py
2727
- name: Upload reports to Codecov
28-
if: ${{ matrix.python == '3.11' }}
28+
if: ${{ matrix.python == '3.13' }}
2929
run: codecov
3030
static-analysis:
3131
runs-on: ubuntu-latest

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ classifiers = [
1818
"Programming Language :: Python :: 3.10",
1919
"Programming Language :: Python :: 3.11",
2020
"Programming Language :: Python :: 3.12",
21+
"Programming Language :: Python :: 3.13",
2122
"Topic :: Security",
2223
"Topic :: Software Development :: Libraries :: Python Modules",
2324
]

0 commit comments

Comments
 (0)