Skip to content

Commit d583dc6

Browse files
committed
Run the tests with Python 3.14
1 parent 070e560 commit d583dc6

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
test:
77
strategy:
88
matrix:
9-
python: ['3.10', '3.11', '3.12', '3.13']
9+
python: ['3.10', '3.11', '3.12', '3.13', '3.14']
1010
runs-on: ubuntu-latest
1111
steps:
1212
- uses: actions/checkout@v5
@@ -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.13' }}
28+
if: ${{ matrix.python == '3.14' }}
2929
run: codecov
3030
static-analysis:
3131
runs-on: ubuntu-latest
@@ -50,7 +50,7 @@ jobs:
5050
- uses: actions/checkout@v5
5151
- uses: actions/setup-python@v6
5252
with:
53-
python-version: '3.13'
53+
python-version: '3.14'
5454
- run: pip install build
5555
- run: python -m build
5656
- if: success()

pyproject.toml

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

0 commit comments

Comments
 (0)