From 5855ca909955a9b89037c4b32b2f045bb11f78bb Mon Sep 17 00:00:00 2001 From: Julien Duponchelle Date: Sun, 23 Jul 2023 12:02:29 +0200 Subject: [PATCH] Bump PyMySQL to 1.1.0 to solve : LookupError: unknown encoding: utf8mb3 Close #406 --- CHANGELOG | 5 ++++- docs/conf.py | 4 ++-- setup.py | 4 ++-- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 02037b72..ea70c81e 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -192,4 +192,7 @@ * Fix merging error of XAPrepareEvent 0.42.2 16/07/2023 -* Fix release error \ No newline at end of file +* Fix release error + +0.43.0 23/07/2023 +* Bump PyMySQL to 1.1.0 to solve : LookupError: unknown encoding: utf8mb3 \ No newline at end of file diff --git a/docs/conf.py b/docs/conf.py index 066aa4a4..de4e1ded 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -48,9 +48,9 @@ # built documents. # # The short X.Y version. -version = '0.42.2' +version = '0.43' # The full version, including alpha/beta/rc tags. -release = '0.42.2' +release = '0.43' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index 23d76aa4..31cda19b 100644 --- a/setup.py +++ b/setup.py @@ -29,7 +29,7 @@ def run(self): unittest.main(tests, argv=sys.argv[:1]) -version = "0.42.2" +version = "0.43.0" this_directory = Path(__file__).parent long_description = (this_directory / "README.md").read_text() @@ -49,5 +49,5 @@ def run(self): "pymysqlreplication.constants", "pymysqlreplication.tests"], cmdclass={"test": TestCommand}, - install_requires=['pymysql>=0.10'], + install_requires=['pymysql>=1.1.0'], )