Browse Source

Use mysqlclient instead of the deprecated MySQL-python

Baptiste Jonglez 6 years ago
parent
commit
04a7006dd8
2 changed files with 2 additions and 2 deletions
  1. 1 1
      requirements.pip
  2. 1 1
      setup.py

+ 1 - 1
requirements.pip

@@ -1,2 +1,2 @@
-MySQL-python
+mysqlclient
 sqlalchemy

+ 1 - 1
setup.py

@@ -76,7 +76,7 @@ setup(
     # your project is installed. For an analysis of "install_requires" vs pip's
     # requirements files see:
     # https://packaging.python.org/en/latest/requirements.html
-    install_requires=['MySQL-python', 'sqlalchemy', 'future'],
+    install_requires=['mysqlclient', 'sqlalchemy', 'future'],
 
     # List additional groups of dependencies here (e.g. development
     # dependencies). You can install these using the following syntax,