From 4b8ffd6bfed4b4d3d33058a471b02cd14e53ed5e Mon Sep 17 00:00:00 2001 From: Adam Coldrick Date: Thu, 1 Sep 2016 11:43:32 +0000 Subject: [PATCH] Limit PyMySQL to < 0.7.7 The tests are failing with weird foreign key constraint failures on patches which don't affect the relevant bits of code. This commit limits the version of PyMySQL to less than the recent release (at the time of writing) which appears to correlate with the test failures appearing. Change-Id: I2924feed790786fb029f9cbbd89e186cb8f02967 --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 2ccedb35..2b627c7d 100644 --- a/requirements.txt +++ b/requirements.txt @@ -24,6 +24,6 @@ stevedore>=1.3.0 tzlocal>=1.1.2 email>=4.0.2;python_version<'3.0' Jinja2>=2.7.3 -PyMySQL>=0.6.2,!=0.6.4 +PyMySQL>=0.6.2,!=0.6.4,<0.7.7 apscheduler>=3.0.1,<3.1.0 python_dateutil>=2.4.0