Skip to content

Commit 1431519

Browse files
add support for Python 3.14 (#34)
1 parent ebc5ecb commit 1431519

File tree

4 files changed

+8
-2
lines changed

4 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,10 @@ After splitting into separate packages in v2025.8.1 for security isolation, we'r
3333

3434
The GitHub releases were previously using calendar versioning (e.g., v2025.8.1) while individual packages used semantic versioning. With the consolidation to a single package, GitHub releases will now use the package version directly. The consolidated package will be v0.10.0, continuing from the highest version among the previous packages (mcp-django-shell was at 0.9.0).
3535

36+
### Added
37+
38+
- Added support for Python 3.14
39+
3640
### Changed
3741

3842
- **BREAKING**: Consolidated mcp-django-shell functionality into main mcp-django package

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ from noxfile import PY_VERSIONS
3030
cog.outl(f"- Python {', '.join([version for version in PY_VERSIONS])}")
3131
cog.outl(f"- Django {', '.join([version for version in DJ_VERSIONS if version != 'main'])}")
3232
]]] -->
33-
- Python 3.10, 3.11, 3.12, 3.13
33+
- Python 3.10, 3.11, 3.12, 3.13, 3.14
3434
- Django 4.2, 5.1, 5.2
3535
<!-- [[[end]]] -->
3636

noxfile.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@
1313
PY311 = "3.11"
1414
PY312 = "3.12"
1515
PY313 = "3.13"
16-
PY_VERSIONS = [PY310, PY311, PY312, PY313]
16+
PY314 = "3.14"
17+
PY_VERSIONS = [PY310, PY311, PY312, PY313, PY314]
1718
PY_DEFAULT = PY_VERSIONS[0]
1819
PY_LATEST = PY_VERSIONS[-1]
1920

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ classifiers = [
6161
"Programming Language :: Python :: 3.11",
6262
"Programming Language :: Python :: 3.12",
6363
"Programming Language :: Python :: 3.13",
64+
"Programming Language :: Python :: 3.14",
6465
# [[[end]]]
6566
"Programming Language :: Python :: Implementation :: CPython"
6667
]

0 commit comments

Comments
 (0)