Skip to content

Commit

Permalink
Bump PyMySQL to 1.1.0 to solve : LookupError: unknown encoding: utf8mb3
Browse files Browse the repository at this point in the history
Close #406
  • Loading branch information
julien-duponchelle committed Jul 23, 2023
1 parent e6eb218 commit 5855ca9
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -192,4 +192,7 @@
* Fix merging error of XAPrepareEvent

0.42.2 16/07/2023
* Fix release error
* Fix release error

0.43.0 23/07/2023
* Bump PyMySQL to 1.1.0 to solve : LookupError: unknown encoding: utf8mb3
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand All @@ -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'],
)

0 comments on commit 5855ca9

Please sign in to comment.