Skip to content

Commit ea466c8

Browse files
committed
add Python 3.14 support
1 parent bec3ba3 commit ea466c8

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
strategy:
6161
fail-fast: true
6262
matrix:
63-
python: ['3.10', '3.11', '3.12', '3.13']
63+
python: ['3.10', '3.11', '3.12', '3.13', '3.14']
6464
steps:
6565
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
6666
- uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0

pyproject.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
[tool.mypy]
22
files = "cloudsplaining"
3+
4+
python_version = "3.9" # should be identical to the minimum supported version
35
local_partial_types = true # will become the new default from version 2
46
allow_redefinition_new = true # will become the new default from version 2
57
fixed_format_cache = true # new caching mechanism

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ def get_description() -> str:
6262
"Programming Language :: Python :: 3.11",
6363
"Programming Language :: Python :: 3.12",
6464
"Programming Language :: Python :: 3.13",
65+
"Programming Language :: Python :: 3.14",
6566
"License :: OSI Approved :: MIT License",
6667
"Operating System :: OS Independent",
6768
],

0 commit comments

Comments
 (0)