From 7d7f0fad7fa1d9db07d1836d21955fe93eb7297c Mon Sep 17 00:00:00 2001 From: Zhou Wei <52485244+zhouwei25@users.noreply.github.com> Date: Thu, 17 Sep 2020 14:34:50 +0800 Subject: [PATCH] python for windows not install netifaces (#27355) --- python/requirements.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/python/requirements.txt b/python/requirements.txt index ddd1e943df7..47888424755 100644 --- a/python/requirements.txt +++ b/python/requirements.txt @@ -18,4 +18,5 @@ decorator prettytable astor pathlib -netifaces +netifaces ; platform_system != "Windows" +netifaces ; python_version>="3.5" and platform_system == "Windows" -- GitLab