From a0570419981ee91b3032dd204853eb9a223cbbde Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20K=C3=A4ufl?= Date: Fri, 28 Jul 2017 13:51:33 +0200 Subject: [PATCH] Added support for py36 and Django 1.11 to readme/classifiers --- README.rst | 4 ++-- setup.py | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index 126fd555e..052d3573c 100644 --- a/README.rst +++ b/README.rst @@ -19,8 +19,8 @@ pytest-django allows you to test your Django project/applications with the `_ * Version compatibility: - * Django: 1.7-1.10 and latest master branch (compatible at the time of each release) - * Python: CPython 2.7,3.3-3.5 or PyPy 2,3 + * Django: 1.7-1.11 and latest master branch (compatible at the time of each release) + * Python: CPython 2.7,3.3-3.6 or PyPy 2,3 * pytest: >2.9.x * Licence: BSD diff --git a/setup.py b/setup.py index d74ef9761..fd6d9e270 100755 --- a/setup.py +++ b/setup.py @@ -42,6 +42,7 @@ def read(fname): 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', ], # the following makes a plugin available to pytest entry_points={'pytest11': ['django = pytest_django.plugin']})