summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xsetup.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index 26523f5..0c4028c 100755
--- a/setup.py
+++ b/setup.py
@@ -22,7 +22,7 @@ from setuptools import setup
setup(
name='django-testscenarios',
- version="0.8",
+ version="0.9",
author="Linaro Limited",
author_email="lava-team@linaro.org",
description="Test scenarios for Django",
@@ -38,6 +38,7 @@ setup(
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.7",
+ "Programming Language :: Python :: 3.5",
"Topic :: Software Development :: Testing",
],
zip_safe=True,
@@ -46,7 +47,7 @@ setup(
],
install_requires=[
'django >= 1.7',
- 'django-testproject >= 0.1.1',
+ 'django-testproject >= 0.1.3',
'testtools >= 0.9.2',
'testscenarios >= 0.1',
],