Skip to content

Commit c9b5a7c

Browse files
committed
Confirm support for Django 1.10
1 parent 613b79e commit c9b5a7c

File tree

5 files changed

+11
-5
lines changed

5 files changed

+11
-5
lines changed

.travis.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ env:
1010
- TOXENV=py27-django19
1111
- TOXENV=py34-django19
1212
- TOXENV=py35-django19
13+
- TOXENV=py27-django110
14+
- TOXENV=py34-django110
15+
- TOXENV=py35-django110
1316
- TOXENV=py27-django-master
1417
- TOXENV=py35-django-master
1518

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.9
6+
- Supports Django 1.7 through 1.10
77
- Supports Python 2.7, 3.4, and 3.5
88

99
0.6.0 - 2015-04-01

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ Two reasons to use django-pylibmc instead are:
3434
Requirements
3535
------------
3636

37-
django-pylibmc requires pylibmc 1.4.1 or above. It supports Django 1.7 through
38-
1.9, and Python versions 2.7, 3.4, and 3.5.
37+
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.
3939

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

setup.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,9 @@ def run_tests(self):
4343
# I don't know what exactly this means, but why not?
4444
'Environment :: Web Environment :: Mozilla',
4545
'Framework :: Django',
46+
'Framework :: Django :: 1.8',
47+
'Framework :: Django :: 1.9',
48+
'Framework :: Django :: 1.10',
4649
'Intended Audience :: Developers',
4750
'License :: OSI Approved :: BSD License',
4851
'Operating System :: OS Independent',

tox.ini

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

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

1110
[testenv]
1211
commands = {envpython} runtests.py
1312
deps =
1413
django18: Django>=1.8,<1.9
1514
django19: Django>=1.9,<1.10
15+
django110: Django>=1.10a1,<1.11
1616
django-master: https://github.com/django/django/archive/master.tar.gz
1717
pylibmc>=1.4.1

0 commit comments

Comments
 (0)