forked from openlp/openlp
Change MySQL-Connector optional dependency to pymysql, a pure-Python MySQL client.
bzr-revno: 2895
This commit is contained in:
commit
7eaabb882e
@ -97,7 +97,7 @@ MODULES = [
|
|||||||
|
|
||||||
OPTIONAL_MODULES = [
|
OPTIONAL_MODULES = [
|
||||||
('qdarkstyle', '(dark style support)'),
|
('qdarkstyle', '(dark style support)'),
|
||||||
('mysql.connector', '(MySQL support)'),
|
('pymysql', '(MySQL support)'),
|
||||||
('pyodbc', '(ODBC support)'),
|
('pyodbc', '(ODBC support)'),
|
||||||
('psycopg2', '(PostgreSQL support)'),
|
('psycopg2', '(PostgreSQL support)'),
|
||||||
('enchant', '(spell checker)'),
|
('enchant', '(spell checker)'),
|
||||||
|
2
setup.py
2
setup.py
@ -191,7 +191,7 @@ using a computer and a data projector.""",
|
|||||||
extras_require={
|
extras_require={
|
||||||
'agpl-pdf': ['PyMuPDF'],
|
'agpl-pdf': ['PyMuPDF'],
|
||||||
'darkstyle': ['QDarkStyle'],
|
'darkstyle': ['QDarkStyle'],
|
||||||
'mysql': ['mysql-connector-python'],
|
'mysql': ['pymysql'],
|
||||||
'odbc': ['pyodbc'],
|
'odbc': ['pyodbc'],
|
||||||
'postgresql': ['psycopg2'],
|
'postgresql': ['psycopg2'],
|
||||||
'spellcheck': ['pyenchant >= 1.6'],
|
'spellcheck': ['pyenchant >= 1.6'],
|
||||||
|
Loading…
Reference in New Issue
Block a user