diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3db6dfb6..ff7c369d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -45,16 +45,6 @@ jobs: python -m pip install --upgrade pip pip install tox coverage - - name: Django 3.2.x Test - run: | - tox -e "py${PYTHON_VERSION/\./}-django32" - if: ${{ env.PYTHON_VERSION == '3.8' || env.PYTHON_VERSION == '3.9' || env.PYTHON_VERSION == '3.10' }} - - - name: Django 4.1.x Test - run: | - tox -e "py${PYTHON_VERSION/\./}-django41" - if: ${{ env.PYTHON_VERSION == '3.8' || env.PYTHON_VERSION == '3.9' || env.PYTHON_VERSION == '3.10' || env.PYTHON_VERSION == '3.11' }} - - name: Django 4.2.x Test run: | tox -e "py${PYTHON_VERSION/\./}-django42" diff --git a/pyproject.toml b/pyproject.toml index 86579534..3b331612 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -27,7 +27,7 @@ classifiers = [ "Topic :: Internet" ] dependencies = [ - "Django>=3.2", + "Django>=4.2", "social-auth-core~=4.4" ] description = "Python Social Authentication, Django integration." diff --git a/tox.ini b/tox.ini index a13f0fa4..0ff6c430 100644 --- a/tox.ini +++ b/tox.ini @@ -1,7 +1,5 @@ [tox] envlist = - py{39,310}-django32 - py{39,310,311}-django41 py{39,310,311}-django42 py{310,311,312,313}-django50 py{310,311,312,313}-django51 @@ -14,8 +12,6 @@ passenv = * commands = coverage run manage.py test deps = - django32: Django>=3.2,<3.3 - django41: Django>=4.1,<4.2 django42: Django>=4.2,<4.3 django50: Django>=5.0,<5.1 django51: Django>=5.1,<5.2