Skip to content

Commit 9f34426

Browse files
authored
Merge pull request #61 from GitRon/feature/python-313-support
Added Python 3.13 support
2 parents d9b0951 + 925b2c3 commit 9f34426

File tree

3 files changed

+7
-0
lines changed

3 files changed

+7
-0
lines changed

.github/workflows/workflow.yaml

+5
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ jobs:
3737
- "3.10"
3838
- "3.11"
3939
- "3.12"
40+
- "3.13"
4041
django:
4142
- "4.2"
4243
- "5.0"
@@ -54,6 +55,10 @@ jobs:
5455
django: "5.1"
5556
- python-version: "3.9"
5657
django: "5.1"
58+
- python-version: "3.13"
59+
django: "4.2"
60+
- python-version: "3.13"
61+
django: "5.0"
5762

5863
services:
5964
# postgres service

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
66

77
<!--
88
## [Unreleased]
9+
- Added Python 3.13 support
910
-->
1011

1112
## [Unreleased]

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ def get_version(*file_paths):
8282
'Programming Language :: Python :: 3.10',
8383
'Programming Language :: Python :: 3.11',
8484
'Programming Language :: Python :: 3.12',
85+
'Programming Language :: Python :: 3.13',
8586
'Topic :: Security',
8687
'Topic :: Software Development',
8788
],

0 commit comments

Comments
 (0)