Skip to content

Commit 8a1e790

Browse files
committed
force PyMySQL version to 0.6.7.1
1 parent eef8f8e commit 8a1e790

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

setup.py

+6-5
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,12 @@
1111
author_email='[email protected]',
1212
description='MySQL to Elasticsearch sync tool',
1313
install_requires=[
14-
'mysql-replication>=0.8',
15-
'requests>=2.9.1',
16-
'PyYAML>=3.11',
17-
'lxml>=3.5.0',
18-
'future>=0.15.2'
14+
'PyMySQL==0.6.7',
15+
'mysql-replication==0.8',
16+
'requests==2.9.1',
17+
'PyYAML==3.11',
18+
'lxml==3.5.0',
19+
'future==0.15.2'
1920
],
2021
entry_points={
2122
'console_scripts': [

src/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def encode_in_py2(s):
2727
from pymysqlreplication import BinLogStreamReader
2828
from pymysqlreplication.row_event import DeleteRowsEvent, UpdateRowsEvent, WriteRowsEvent
2929

30-
__version__ = '0.3.3'
30+
__version__ = '0.3.3.1'
3131

3232

3333
# The magic spell for removing invalid characters in xml stream.

0 commit comments

Comments
 (0)