From 9d0023ba906f3a5eb930318609db5ec61e57f030 Mon Sep 17 00:00:00 2001 From: Kefu Chai Date: Sun, 31 Jan 2021 12:03:07 +0800 Subject: [PATCH] pybind/mgr/dashboard: do not install enum34 enum was introduced by python 3.4, but we require python3.6 and up. so drop it. Signed-off-by: Kefu Chai --- src/pybind/mgr/dashboard/constraints.txt | 1 - src/pybind/mgr/dashboard/requirements.txt | 1 - 2 files changed, 2 deletions(-) diff --git a/src/pybind/mgr/dashboard/constraints.txt b/src/pybind/mgr/dashboard/constraints.txt index 96cfdb99e4f..05dbdd869f1 100644 --- a/src/pybind/mgr/dashboard/constraints.txt +++ b/src/pybind/mgr/dashboard/constraints.txt @@ -1,5 +1,4 @@ CherryPy==13.1.0 -enum34==1.1.6 more-itertools==4.1.0 PyJWT==1.6.4 bcrypt==3.1.4 diff --git a/src/pybind/mgr/dashboard/requirements.txt b/src/pybind/mgr/dashboard/requirements.txt index 282a07573cd..39ce5f9eae3 100644 --- a/src/pybind/mgr/dashboard/requirements.txt +++ b/src/pybind/mgr/dashboard/requirements.txt @@ -1,6 +1,5 @@ bcrypt CherryPy -enum34; python_version<'3.4' more-itertools PyJWT pyopenssl -- 2.39.5