From 3521cad588281b924786a69bfd71a92702e1731e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Tue, 21 Jan 2025 07:54:41 +0100 Subject: [PATCH] fix(ci): test django main only on Python 3.12+ This is what it currently requires. --- .github/workflows/test.yml | 2 +- tox.ini | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e7ebbf64..13290562 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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: | diff --git a/tox.ini b/tox.ini index 4ffa282c..bb35d5d2 100644 --- a/tox.ini +++ b/tox.ini @@ -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]