Skip to content

Commit 2252982

Browse files
authored
python 3.13 support (#152)
1 parent 1384b9d commit 2252982

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Set up Python
1515
uses: actions/setup-python@v6
1616
with:
17-
python-version: 3.8
17+
python-version: '3.10'
1818
- name: Install Flit
1919
run: pip install flit
2020
- name: Install Dependencies

.github/workflows/test_full.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
15-
django-version: ['<3.2', '<3.3', '<4.1', '<4.2']
14+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
15+
django-version: ['<3.2', '<3.3', '<4.2', '<4.3', '<5.1', '<5.2', '<5.3']
1616
exclude:
1717
- python-version: '3.8'
1818
django-version: '<5.1'
@@ -22,6 +22,10 @@ jobs:
2222
django-version: '<3.2'
2323
- python-version: '3.12'
2424
django-version: '<3.3'
25+
- python-version: '3.13'
26+
django-version: '<3.2'
27+
- python-version: '3.13'
28+
django-version: '<3.3'
2529

2630
steps:
2731
- uses: actions/checkout@v5
@@ -43,7 +47,7 @@ jobs:
4347
- name: Set up Python
4448
uses: actions/setup-python@v6
4549
with:
46-
python-version: 3.9
50+
python-version: '3.10'
4751
- name: Install Flit
4852
run: pip install flit
4953
- name: Install Dependencies

0 commit comments

Comments
 (0)