Skip to content

Commit b53a154

Browse files
committed
chore: add python 3.14 to test suit
1 parent fc33b02 commit b53a154

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
pytest:
4040
strategy:
4141
matrix:
42-
py_version: ["3.10", "3.11", "3.12", "3.13"]
42+
py_version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
4343
pydantic_ver: ["<2", ">=2.5,<3"]
4444
os: [ubuntu-latest, windows-latest, macos-latest]
4545
runs-on: "${{ matrix.os }}"

pyproject.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ classifiers = [
1919
"Programming Language :: Python :: 3.11",
2020
"Programming Language :: Python :: 3.12",
2121
"Programming Language :: Python :: 3.13",
22+
"Programming Language :: Python :: 3.14",
2223
"Operating System :: OS Independent",
2324
"Intended Audience :: Developers",
2425
"Topic :: System :: Networking",
@@ -189,6 +190,7 @@ line-length = 88
189190
"S311", # Standard pseudo-random generators are not suitable for security/cryptographic purposes
190191
"D101", # Missing docstring in public class
191192
"D102", # Missing docstring in public method
193+
"PLR2004", # Magic value
192194
]
193195
"docs/examples/*" = [
194196
"D103", # Missing docstring in public function

0 commit comments

Comments
 (0)