Skip to content

Commit 41a25c3

Browse files
committed
Confirm support for Django 1.11
1 parent 7117f2d commit 41a25c3

File tree

5 files changed

+11
-3
lines changed

5 files changed

+11
-3
lines changed

.travis.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,12 @@ matrix:
2626
python: "3.5"
2727
- env: TOXENV=py35-django110
2828
python: "3.5"
29+
- env: TOXENV=py27-django111
30+
python: "2.7"
31+
- env: TOXENV=py34-django111
32+
python: "3.5"
33+
- env: TOXENV=py35-django111
34+
python: "3.5"
2935
- env: TOXENV=py27-django-master
3036
python: "2.7"
3137
- env: TOXENV=py35-django-master

CHANGELOG.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Changelog
33

44
0.6.1 - 2015-12-28
55
------------------
6-
- Supports Django 1.7 through 1.10
6+
- Supports Django 1.7 through 1.11
77
- Supports Python 2.7, 3.4, and 3.5
88

99
0.6.0 - 2015-04-01

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Requirements
3535
------------
3636

3737
django-pylibmc requires pylibmc 1.4.1 or above. It supports Django 1.8 through
38-
1.10, and Python versions 2.7, 3.4, and 3.5.
38+
1.11, and Python versions 2.7, 3.4, and 3.5.
3939

4040
Installation
4141
------------

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ def run_tests(self):
4646
'Framework :: Django :: 1.8',
4747
'Framework :: Django :: 1.9',
4848
'Framework :: Django :: 1.10',
49+
'Framework :: Django :: 1.11',
4950
'Intended Audience :: Developers',
5051
'License :: OSI Approved :: BSD License',
5152
'Operating System :: OS Independent',

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,14 @@
55

66
[tox]
77
envlist =
8-
py{27,34,35}-django{18,19,110,-master},
8+
py{27,34,35}-django{18,19,110,111,-master},
99

1010
[testenv]
1111
commands = {envpython} runtests.py
1212
deps =
1313
django18: Django>=1.8,<1.9
1414
django19: Django>=1.9,<1.10
1515
django110: Django>=1.10a1,<1.11
16+
django111: Django>=1.11a1,<2.0
1617
django-master: https://github.com/django/django/archive/master.tar.gz
1718
pylibmc>=1.4.1

0 commit comments

Comments
 (0)