jenkins-bot has submitted this change. ( https://gerrit.wikimedia.org/r/c/pywikibot/core/+/737873 )
Change subject: [bugfix] require mysql >= 0.7.11 ......................................................................
[bugfix] require mysql >= 0.7.11
Bug: T216741 Change-Id: Ic3a4d98ac20899ec8f9693bf6e799ffa3fee64eb --- M requirements.txt M setup.py 2 files changed, 2 insertions(+), 2 deletions(-)
Approvals: Xqt: Looks good to me, approved jenkins-bot: Verified
diff --git a/requirements.txt b/requirements.txt index fadaf2e..e74de65 100644 --- a/requirements.txt +++ b/requirements.txt @@ -50,7 +50,7 @@ sseclient >= 0.0.18,!=0.0.23,!=0.0.24
# The mysql generator in pagegenerators depends on PyMySQL -PyMySQL >= 0.6.7, < 1.0.0 ; python_version < '3.6' +PyMySQL >= 0.7.11, < 1.0.0 ; python_version < '3.6' PyMySQL >= 1.0.0 ; python_version >= '3.6'
# core HTML comparison parser in diff module diff --git a/setup.py b/setup.py index c11224f..c608aa6 100644 --- a/setup.py +++ b/setup.py @@ -65,7 +65,7 @@ 'mwparserfromhell': ['mwparserfromhell>=0.5.0'], 'wikitextparser': ['wikitextparser>=0.47.5; python_version < "3.6"', 'wikitextparser>=0.47.0; python_version >= "3.6"'], - 'mysql': ['PyMySQL >= 0.6.7, < 1.0.0 ; python_version < "3.6"', + 'mysql': ['PyMySQL >= 0.7.11, < 1.0.0 ; python_version < "3.6"', 'PyMySQL >= 1.0.0 ; python_version >= "3.6"'], 'Tkinter': [ # vulnerability found in Pillow<8.1.1 'Pillow>=8.1.1;python_version>="3.6"',