summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNeil Williams <neil.williams@linaro.org>2016-08-10 13:28:42 +0100
committerNeil Williams <neil.williams@linaro.org>2016-08-10 13:28:42 +0100
commit18f19b527095f23ed0f6804bda8ffae64007f342 (patch)
treec890bae114d76a7c3953dba31c60ec401a858703
parentd368a96a9276f49f15d0aa6daa60fc87ddcd5a6f (diff)
prepare for new release with python3 support0.9
Change-Id: Id9eeb98deec4811ab4b69a6a7c9d5fbaa90d033c
-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',
],