From 56ed5846277b0ad32e57e9c292b70b148fc91b3d Mon Sep 17 00:00:00 2001 From: Andrea Frittoli Date: Thu, 6 Apr 2017 21:40:18 +0100 Subject: [PATCH] Drop mysql-python mysql-python is not py3.x compatible, and it's actually a transitive dependency for subunit2sql, so dropping it from the requirements. subunit2sql will pull the right package. Also replacing py34 with py35 in tox.ini, since py35 is the version of py3 used by OpenStack in Pike. Change-Id: I195d479be05c78619f1e8a69e19350558d0b5534 --- requirements.txt | 1 - tox.ini | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index f44e604..7771f11 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,4 @@ python-subunit>=0.0.18 testtools>=0.9.30 testrepository>=0.0.18 -mysql-python>=1.2.5 subunit2sql>=0.8.0 diff --git a/tox.ini b/tox.ini index a7fc1d9..efddc3e 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] minversion = 1.6 -envlist = py34,py27,pypy,pep8 +envlist = py35,py27,pypy,pep8 skipsdist = True [testenv]