From 69f7ddfd8687687450ceaef68e635d499fe2880b Mon Sep 17 00:00:00 2001 From: Adam Coldrick Date: Sat, 26 Jan 2019 12:15:58 +0000 Subject: [PATCH] Remove upper limit on PyMySQL version This limit pins PyMySQL to a very old version, which lacks support for recent MySQL versions. Removing this limit allows StoryBoard to work with MySQL 8. Change-Id: I4851e25b14913233fd7183756e5f4fe6bc47d28a --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 65d5a294..8ccf4eec 100644 --- a/requirements.txt +++ b/requirements.txt @@ -23,7 +23,7 @@ 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,<0.7.7 +PyMySQL>=0.6.2,!=0.6.4 apscheduler>=3.0.1,<3.1.0 python_dateutil>=2.4.0 oslo.concurrency>=3.8.0 # Apache-2.0