From 8d50223a0b5c1859d6151445c410c14490bd427a Mon Sep 17 00:00:00 2001 From: Xiubo Li Date: Mon, 30 Mar 2020 02:36:20 -0400 Subject: [PATCH] requirements,setup: add ipy module for cephfs mount.py The IPy module is a tool for handling of IPv4 and IPv6 addresses and networks, the cephfs mount.py will use it to manage the IP addresses to isolate the netns for each mount, which could let us get ride of using ipmi command to hard shutdown the client node for some test cases. Signed-off-by: Xiubo Li --- requirements2.txt | 1 + requirements3.txt | 1 + setup.py | 1 + 3 files changed, 3 insertions(+) diff --git a/requirements2.txt b/requirements2.txt index af0e0b2b1..ff3c1dda6 100644 --- a/requirements2.txt +++ b/requirements2.txt @@ -107,6 +107,7 @@ virtualenv==15.1.0 # via tox warlock==1.2.0 # via python-glanceclient wrapt==1.10.10 # via debtcollector, positional, python-glanceclient xmltodict==0.12.0 +ipy==1.0 # The following packages are considered to be unsafe in a requirements file: # setuptools diff --git a/requirements3.txt b/requirements3.txt index 275881ba0..f1fcedd5e 100644 --- a/requirements3.txt +++ b/requirements3.txt @@ -99,6 +99,7 @@ virtualenv==15.1.0 # via tox warlock==1.2.0 # via python-glanceclient wrapt==1.10.10 # via debtcollector, positional, python-glanceclient xmltodict==0.12.0 +ipy==1.0 # The following packages are considered to be unsafe in a requirements file: # setuptools diff --git a/setup.py b/setup.py index c037da83c..3e7b9984e 100644 --- a/setup.py +++ b/setup.py @@ -101,6 +101,7 @@ setup( 'xmltodict', 'boto3', 'PyJWT', # for qa/tasks/mgr/dashboard/test_auth.py + 'ipy', # for qa/tasks/cephfs/mount.py ] }, -- 2.47.3