Skip to content

Commit 68519d4

Browse files
authored
feat(deps): Drop Python 3.4 support (#108)
BREAKING CHANGE: drop Python 3.4 support in preparation for adding type hints and Django 3.1 support Prereq for #107
1 parent 4eaf14c commit 68519d4

File tree

3 files changed

+5
-14
lines changed

3 files changed

+5
-14
lines changed

.travis.yml

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,14 @@
11
language: python
22
cache: pip
3-
dist: xenial
3+
dist: bionic
44
install: pip install tox
55
script: tox -e $TOX_ENV
66

77
jobs:
88
include:
9-
- stage: test
10-
python: 3.4
11-
env: TOX_ENV=django18-py34
129
- stage: test
1310
python: 3.5
1411
env: TOX_ENV=django18-py35
15-
- stage: test
16-
python: 3.4
17-
env: TOX_ENV=django19-py34
1812
- stage: test
1913
python: 3.5
2014
env: TOX_ENV=django19-py35
@@ -27,9 +21,6 @@ jobs:
2721
- stage: test
2822
python: 3.6
2923
env: TOX_ENV=django111-py36
30-
- stage: test
31-
python: 3.4
32-
env: TOX_ENV=django20-py34
3324
- stage: test
3425
python: 3.5
3526
env: TOX_ENV=django20-py35

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@
2020
"License :: OSI Approved :: Apache Software License",
2121
"Operating System :: OS Independent",
2222
"Programming Language :: Python :: 3",
23-
"Programming Language :: Python :: 3.4",
2423
"Programming Language :: Python :: 3.5",
2524
"Programming Language :: Python :: 3.6",
2625
"Programming Language :: Python :: 3.7",
26+
"Programming Language :: Python :: 3.8",
2727
],
2828
)

tox.ini

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
# https://docs.djangoproject.com/en/dev/faq/install/#what-python-version-can-i-use-with-django
33
[tox]
44
envlist =
5-
django18-{py34,py35},
6-
django19-{py34,py35},
5+
django18-{py35},
6+
django19-{py35},
77
django110-{py35},
88
django111-{py35,py36},
9-
django20-{py34,py35,py36,py37},
9+
django20-{py35,py36,py37},
1010
django21-{py35,py36,py37},
1111
django22-{py36,py37},
1212
django30-{py36,py37,py38},

0 commit comments

Comments
 (0)