Skip to content

Commit

Permalink
feat(deps): Drop Python 3.4 support (#108)
Browse files Browse the repository at this point in the history
BREAKING CHANGE: drop Python 3.4 support in preparation for adding type hints and Django 3.1 support

Prereq for #107
  • Loading branch information
crccheck authored Aug 5, 2020
1 parent 4eaf14c commit 68519d4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 14 deletions.
11 changes: 1 addition & 10 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,14 @@
language: python
cache: pip
dist: xenial
dist: bionic
install: pip install tox
script: tox -e $TOX_ENV

jobs:
include:
- stage: test
python: 3.4
env: TOX_ENV=django18-py34
- stage: test
python: 3.5
env: TOX_ENV=django18-py35
- stage: test
python: 3.4
env: TOX_ENV=django19-py34
- stage: test
python: 3.5
env: TOX_ENV=django19-py35
Expand All @@ -27,9 +21,6 @@ jobs:
- stage: test
python: 3.6
env: TOX_ENV=django111-py36
- stage: test
python: 3.4
env: TOX_ENV=django20-py34
- stage: test
python: 3.5
env: TOX_ENV=django20-py35
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
)
6 changes: 3 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
# https://docs.djangoproject.com/en/dev/faq/install/#what-python-version-can-i-use-with-django
[tox]
envlist =
django18-{py34,py35},
django19-{py34,py35},
django18-{py35},
django19-{py35},
django110-{py35},
django111-{py35,py36},
django20-{py34,py35,py36,py37},
django20-{py35,py36,py37},
django21-{py35,py36,py37},
django22-{py36,py37},
django30-{py36,py37,py38},
Expand Down

0 comments on commit 68519d4

Please sign in to comment.