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 Feb 7, 2024
1 parent fa16e26 commit 983a337
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 13 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
8 changes: 3 additions & 5 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
[tox]
isolated_build = True
envlist =
{py35,py36,py37}-django{111,20,21}
{py35,py36,py37,py38,py39}-django22
{py36,py37,py38,py39}-django{30,31}
{py36,py37}-django{111,20,21}
{py36,py37,py38,py39}-django{22,30,31}
{py36,py37,py38,py39,py310}-django32
{py38,py39,py310}-django40
{py38,py39,py310,py311}-django41
Expand All @@ -27,12 +26,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 983a337

Please sign in to comment.