summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCyril Roelandt <cyril.roelandt@enovance.com>2014-07-15 10:26:16 +0200
committerCyril Roelandt <cyril.roelandt@enovance.com>2014-07-15 10:26:16 +0200
commit3cfb97e5ae930767f09c22402c3499c9bbb9eebd (patch)
tree66f6a0893a538f7114bdbf389d8b4fae16c17695
parent5830007bbc4152caca6795c6dc2ce57924a8130b (diff)
downloadpython-openstackclient-3cfb97e5ae930767f09c22402c3499c9bbb9eebd.tar.gz
Add Python 3 support
Change-Id: I65fabfc4788230b7280808ec912601c327095db0
-rw-r--r--setup.cfg2
-rw-r--r--tox.ini1
2 files changed, 3 insertions, 0 deletions
diff --git a/setup.cfg b/setup.cfg
index 7023d4e5..00c6904f 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -16,6 +16,8 @@ classifier =
Programming Language :: Python :: 2
Programming Language :: Python :: 2.7
Programming Language :: Python :: 2.6
+ Programming Language :: Python :: 3
+ Programming Language :: Python :: 3.3
[files]
packages =
diff --git a/tox.ini b/tox.ini
index 520a85cd..bdb98bec 100644
--- a/tox.ini
+++ b/tox.ini
@@ -7,6 +7,7 @@ skipdist = True
usedevelop = True
install_command = pip install -U {opts} {packages}
setenv = VIRTUAL_ENV={envdir}
+ PYTHONHASHSEED=0
deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
commands = python setup.py testr --testr-args='{posargs}'