Skip to content

Commit

Permalink
Merge pull request #221 from christopher-mohr/change_mysql_dependency
Browse files Browse the repository at this point in the history
Change mysql dependency to PyMySQL
  • Loading branch information
b-schubert authored Nov 13, 2018
2 parents 961ece9 + 667d897 commit 946f27b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Fred2/IO/MartsAdapter.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import urllib2
import warnings
import logging
import MySQLdb
import pymysql.cursors
from operator import itemgetter

from Fred2.IO.ADBAdapter import ADBAdapter, EAdapterFields, EIdentifierTypes
Expand All @@ -32,7 +32,7 @@ def __init__(self, usr=None, host=None, pwd=None, db=None, biomart=None):
self.sequence_proxy = dict()

if usr and host and pwd and db:
self.connection = MySQLdb.connect(user=usr, host=host, passwd=pwd, db=db)
self.connection = pymysql.connect(user=usr, host=host, password=pwd, db=db)
else:
self.connection = None

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,6 @@
#ext_modules=[d2s_module],

# Run-time dependencies. (will be installed by pip when FRED2 is installed)
install_requires=['setuptools>=18.2', 'pandas', 'pyomo>=4.0','svmlight', 'MySQL-python >= 1.2.4', 'biopython', 'pyVCF'],
install_requires=['setuptools>=18.2', 'pandas', 'pyomo>=4.0','svmlight', 'PyMySQL', 'biopython', 'pyVCF'],

)

0 comments on commit 946f27b

Please sign in to comment.