From 8c989dee0cbb902a8efea45c146649f74ed20975 Mon Sep 17 00:00:00 2001 From: ShenYuhan Date: Thu, 26 Dec 2019 11:29:41 +0800 Subject: [PATCH] fix windows requirement.txt --- requirements.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index dfa41063..a4389007 100644 --- a/requirements.txt +++ b/requirements.txt @@ -11,7 +11,6 @@ flake8 tb-paddle tensorboard >= 1.15 cma == 2.7.0 -gunicorn >= 19.10.0 sentencepiece nltk colorlog @@ -24,3 +23,6 @@ numpy < 1.17.0 ; python_version < "3" # pandas no longer support python2 in version 0.25 and above pandas ; python_version >= "3" pandas < 0.25.0 ; python_version < "3" + +# gunicorn not support windows +gunicorn >= 19.10.0; sys_platform == "darwin" or sys_platform == "linux" -- GitLab