Skip to content

Commit

Permalink
Stop testing with Python 3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
ataylor32 committed May 21, 2024
1 parent 2a1a7a4 commit 3a6dfe1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 12 deletions.
8 changes: 0 additions & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,29 +22,21 @@ jobs:
max-parallel: 5
matrix:
include:
- django-version: "1.11"
python-version: "3.5"
- django-version: "1.11"
python-version: "3.6"
- django-version: "1.11"
python-version: "3.7"
# Django 2.0
- django-version: "2.0"
python-version: "3.5"
- django-version: "2.0"
python-version: "3.6"
- django-version: "2.0"
python-version: "3.7"
# Django 2.1
- django-version: "2.1"
python-version: "3.5"
- django-version: "2.1"
python-version: "3.6"
- django-version: "2.1"
python-version: "3.7"
# Django 2.2
- django-version: "2.2"
python-version: "3.5"
- django-version: "2.2"
python-version: "3.6"
- django-version: "2.2"
Expand Down
7 changes: 3 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tox]
envlist =
{py35,py36,py37}-django{111,20,21},
{py35,py36,py37,py38,py39}-django22
{py36,py37}-django{111,20,21},
{py36,py37,py38,py39}-django22
{py36,py37,py38,py39}-django{30,31}
{py36,py37,py38,py39,py310}-django32
{py38,py39,py310}-django40
Expand All @@ -28,12 +28,11 @@ deps =
django42: Django>=4.2,<5.0
django50: Django>=5.0,<5.1
dj-database-url==0.5.0
py{35,36,37,38,39,310}: psycopg2==2.8.5
py{36,37,38,39,310}: psycopg2==2.8.5
py{311,312}: psycopg2==2.9.6

[gh-actions]
python =
3.5: py35
3.6: py36
3.7: py37
3.8: py38
Expand Down

0 comments on commit 3a6dfe1

Please sign in to comment.