Skip to content

Commit 52c5ff0

Browse files
committed
fix(ci): test django main only on Python 3.12+
This is what it currently requires.
1 parent 7cf5e7c commit 52c5ff0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: .github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
- name: Django main Test
6666
run: |
6767
tox -e "py${PYTHON_VERSION/\./}-djangomain"
68-
if: ${{ env.PYTHON_VERSION == '3.10' || env.PYTHON_VERSION == '3.11' || env.PYTHON_VERSION == '3.12' || env.PYTHON_VERSION == '3.13' }}
68+
if: ${{ env.PYTHON_VERSION == '3.12' || env.PYTHON_VERSION == '3.13' }}
6969

7070
- name: social-core master Test
7171
run: |

Diff for: tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ envlist =
44
py{39,310,311}-django41
55
py{39,310,311}-django42
66
py{310,311,312,313}-django50
7-
py{310,311,312,313}-djangomain
7+
py{312,313}-djangomain
88
py{310,311,312,312}-socialmaster
99

1010
[testenv]

0 commit comments

Comments
 (0)