From 3fe083eed6b3a5d1855d86a783976223c67a7b3d Mon Sep 17 00:00:00 2001 From: Tony Murray Date: Fri, 12 Nov 2021 09:58:17 -0600 Subject: [PATCH] Fix PyMySQL upstream dependency bug (#13508) PyMySQL 1.0.0 requires Python 3.6, but they did not specify that in their setup files. Block that version so we don't break users on Python 3.5. (Also, please update your Python) --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 6563a702cf..c7eaec7af1 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -PyMySQL +PyMySQL!=1.0.0 python-dotenv redis>=3.0 setuptools