Skip to content

Commit

Permalink
fix(ci): test django main only on Python 3.12+
Browse files Browse the repository at this point in the history
This is what it currently requires.
  • Loading branch information
nijel committed Jan 21, 2025
1 parent 1ae4986 commit 3521cad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
- name: Django main Test
run: |
tox -e "py${PYTHON_VERSION/\./}-djangomain"
if: ${{ env.PYTHON_VERSION == '3.10' || env.PYTHON_VERSION == '3.11' || env.PYTHON_VERSION == '3.12' || env.PYTHON_VERSION == '3.13' }}
if: ${{ env.PYTHON_VERSION == '3.12' || env.PYTHON_VERSION == '3.13' }}

- name: social-core master Test
run: |
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ envlist =
py{39,310,311}-django41
py{39,310,311}-django42
py{310,311,312,313}-django50
py{310,311,312,313}-djangomain
py{312,313}-djangomain
py{310,311,312,312}-socialmaster

[testenv]
Expand Down

0 comments on commit 3521cad

Please sign in to comment.