Skip to content

Commit b89edfc

Browse files
authored
feat: add Python 3.14 support & fix pre-commit (#117)
* feat: add Python 3.14 support & fix pre-commit * chore: fix pre-commit config
1 parent 5b0bf09 commit b89edfc

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/test-suite.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ jobs:
9090
strategy:
9191
fail-fast: true
9292
matrix:
93-
python3_version: ["3.10", "3.11", "3.12", "3.13"]
93+
python3_version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
9494
needs: [build, unit-tests]
9595
uses: ./.github/workflows/platform-integration-test.yaml
9696
with:

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,4 @@ repos:
4545
hooks:
4646
- id: conventional-pre-commit
4747
stages: [commit-msg]
48-
args: [--verbose, --scopes="feat, fix, docs, style, test, chore, ci"]
48+
args: [--verbose, feat, fix, docs, style, test, chore, ci]

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
"Programming Language :: Python :: 3 :: Only",
2122
"Topic :: Security :: Cryptography",
2223
"Topic :: Software Development :: Libraries :: Python Modules",

0 commit comments

Comments
 (0)