Skip to content

Commit 18620cc

Browse files
committed
Revert Django 1.11 with Python 2.7, 3.4
1 parent 920c06d commit 18620cc

File tree

4 files changed

+9
-2
lines changed

4 files changed

+9
-2
lines changed

.travis.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ cache:
77
matrix:
88
fast_finish: true
99
include:
10+
- env: TOX_ENV=py27-dj111
11+
python: 2.7
12+
- env: TOX_ENV=py34-dj111
13+
python: 3.4
1014
- env: TOX_ENV=py35-dj111
1115
python: 3.5
1216
- env: TOX_ENV=py36-dj111

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ Contributors
109109

110110
Changelog
111111
---------
112-
- 0.14.0 Add support for Django 2.2, 3.0. Drop support for Django 2.0, 2.1 and Python 2.x :tada:.
112+
- 0.14.0 Add support for Django 2.2, 3.0. Drop support for Django 2.0, 2.1.
113113
- 0.13 Fixed error for Python 3 on PyPi.
114114
- 0.12 Add support for Django 2.1. Support Python 3.7. Drop support for Django 1.8.
115115
- 0.11 Removed reference to django.db.models.fields.subclassing.SubfieldBase, which means that only Django 1.8+ is now supported. Removed support for Python versions < 2.6. The Django 1.6 series was the last to support Python 2.6. Added testing support for Django 1.10. Changed development status from Beta to Production/Stable.

setup.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,10 @@
3838
'Natural Language :: English',
3939
'Operating System :: OS Independent',
4040
'Programming Language :: Python',
41+
'Programming Language :: Python :: 2',
42+
'Programming Language :: Python :: 2.7',
4143
'Programming Language :: Python :: 3',
44+
'Programming Language :: Python :: 3.4',
4245
'Programming Language :: Python :: 3.5',
4346
'Programming Language :: Python :: 3.6',
4447
'Programming Language :: Python :: 3.7',

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
skipsdist = true
33
skip_missing_interpreters = true
44
envlist =
5-
py{34,35,36,37}-dj111,
5+
py{27,34,35,36,37}-dj111,
66
py{35,36,37,38}-dj22,
77
py{36,37,38}-dj30,
88
py{36,37,38}-djmaster

0 commit comments

Comments
 (0)