From 84cafd643fad0b569d2a3f952cd3e0d441c3f673 Mon Sep 17 00:00:00 2001 From: Oleg Silkin Date: Wed, 1 Apr 2020 18:50:09 -0400 Subject: [PATCH] replace oracle driver with `pymysql` driver --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index c8755cf..f7a397f 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ setup( data_files=[('config', ['config/conf.json',])], include_package_data=True, install_requires=[ - 'mysql-connector-python', + 'pymysql', 'pyyaml', 'Faker>=1.0.7', 'asyncio',