You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by ma...@apache.org on 2019/09/17 14:07:18 UTC

[airavata-django-portal] branch master updated: Make mysqlclient an optional dependency

This is an automated email from the ASF dual-hosted git repository.

machristie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/airavata-django-portal.git


The following commit(s) were added to refs/heads/master by this push:
     new f82b69b  Make mysqlclient an optional dependency
f82b69b is described below

commit f82b69b638d7a8926fd6de6a89f3fd51d086b0a0
Author: Marcus Christie <ma...@apache.org>
AuthorDate: Tue Sep 17 10:07:08 2019 -0400

    Make mysqlclient an optional dependency
---
 requirements-mysql.txt | 1 +
 requirements.txt       | 1 -
 setup.py               | 3 +++
 3 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/requirements-mysql.txt b/requirements-mysql.txt
new file mode 100644
index 0000000..89e81a5
--- /dev/null
+++ b/requirements-mysql.txt
@@ -0,0 +1 @@
+mysqlclient==1.4.2.post1
diff --git a/requirements.txt b/requirements.txt
index e9a853d..89cdf89 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -6,7 +6,6 @@ thrift==0.10.0
 thrift_connector==0.24
 djangorestframework==3.8.2
 django-webpack-loader==0.6.0
-mysqlclient==1.4.2.post1
 
 wagtail==2.0
 wagtailfontawesome==1.1.3
diff --git a/setup.py b/setup.py
index 815d5d5..1341b49 100644
--- a/setup.py
+++ b/setup.py
@@ -36,6 +36,9 @@ setup(
         'dev': [
             'flake8',
             'flake8-isort'
+        ],
+        'mysql': [
+            'mysqlclient'
         ]
     },
     classifiers=[