Skip to content

Commit

Permalink
Move to mysqlclient instead of pymysql for python3
Browse files Browse the repository at this point in the history
  • Loading branch information
bolkedebruin authored and mistercrunch committed Oct 21, 2015
1 parent 64ad461 commit 76779fb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,6 @@ Sphinx-PyPI-upload
sqlalchemy
thrift
jaydebeapi
pymysql
mysqlclient
unicodecsv
slackclient
2 changes: 1 addition & 1 deletion scripts/ci/airflow_travis.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ airflow_home = ~/airflow
dags_folder = ~/airflow/dags
base_log_folder = ~/airflow/logs
executor = SequentialExecutor
sql_alchemy_conn = mysql+pymysql://root@localhost/airflow
sql_alchemy_conn = mysql+mysqldb://root@localhost/airflow
unit_test_mode = True
load_examples = True
donot_pickle = False
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def run_tests(self):
]
jdbc = ['jaydebeapi>=0.2.0']
mssql = ['pymssql>=2.1.1', 'unicodecsv>=0.13.0']
mysql = ['mysql-python>=1.2.5']
mysql = ['mysqlclient>=1.3.6']
optional = ['librabbitmq>=1.6.1']
oracle = ['cx_Oracle>=5.1.2']
postgres = ['psycopg2>=2.6']
Expand Down

0 comments on commit 76779fb

Please sign in to comment.