Skip to content

Commit e417daf

Browse files
committed
chore(deps): drop support for Django versions not supported upstream
In case somebody wants to use that, older versions are available, but we will not keep maintaining the compatibility in the future.
1 parent 3844ce4 commit e417daf

File tree

3 files changed

+1
-15
lines changed

3 files changed

+1
-15
lines changed

.github/workflows/test.yml

-10
Original file line numberDiff line numberDiff line change
@@ -45,16 +45,6 @@ jobs:
4545
python -m pip install --upgrade pip
4646
pip install tox coverage
4747
48-
- name: Django 3.2.x Test
49-
run: |
50-
tox -e "py${PYTHON_VERSION/\./}-django32"
51-
if: ${{ env.PYTHON_VERSION == '3.8' || env.PYTHON_VERSION == '3.9' || env.PYTHON_VERSION == '3.10' }}
52-
53-
- name: Django 4.1.x Test
54-
run: |
55-
tox -e "py${PYTHON_VERSION/\./}-django41"
56-
if: ${{ env.PYTHON_VERSION == '3.8' || env.PYTHON_VERSION == '3.9' || env.PYTHON_VERSION == '3.10' || env.PYTHON_VERSION == '3.11' }}
57-
5848
- name: Django 4.2.x Test
5949
run: |
6050
tox -e "py${PYTHON_VERSION/\./}-django42"

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ classifiers = [
2727
"Topic :: Internet"
2828
]
2929
dependencies = [
30-
"Django>=3.2",
30+
"Django>=4.2",
3131
"social-auth-core~=4.4"
3232
]
3333
description = "Python Social Authentication, Django integration."

tox.ini

-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
[tox]
22
envlist =
3-
py{39,310}-django32
4-
py{39,310,311}-django41
53
py{39,310,311}-django42
64
py{310,311,312,313}-django50
75
py{310,311,312,313}-django51
@@ -14,8 +12,6 @@ passenv = *
1412
commands =
1513
coverage run manage.py test
1614
deps =
17-
django32: Django>=3.2,<3.3
18-
django41: Django>=4.1,<4.2
1915
django42: Django>=4.2,<4.3
2016
django50: Django>=5.0,<5.1
2117
django51: Django>=5.1,<5.2

0 commit comments

Comments
 (0)