From: Sebastian Wagner Date: Tue, 26 May 2020 10:56:23 +0000 (+0200) Subject: setup.py: add toml for qa/tasks/cephadm.py X-Git-Tag: 1.1.0~103^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F1493%2Fhead;p=teuthology.git setup.py: add toml for qa/tasks/cephadm.py podman's /etc/containers/registries.conf is written in toml. In order to modify it, we need to parse the config. Signed-off-by: Sebastian Wagner --- diff --git a/requirements2.txt b/requirements2.txt index fd99a584c..ff91b5746 100644 --- a/requirements2.txt +++ b/requirements2.txt @@ -102,6 +102,7 @@ scandir==1.8 # via pathlib2 simplejson==3.10.0 # via osc-lib, python-cinderclient, python-neutronclient, python-novaclient six==1.14.0 # via bcrypt, cliff, cmd2, configobj, cryptography, debtcollector, keystoneauth1, more-itertools, openstacksdk, osc-lib, oslo.config, oslo.i18n, oslo.serialization, oslo.utils, pathlib2, pip-tools, pynacl, pyopenssl, pytest, python-cinderclient, python-dateutil, python-glanceclient, python-keystoneclient, python-neutronclient, python-novaclient, python-openstackclient, stevedore, teuthology, tox, warlock stevedore==1.21.0 # via cliff, keystoneauth1, openstacksdk, osc-lib, oslo.config, python-keystoneclient +toml==0.10.1 # via teuthology tox==3.0.0 # via teuthology typing==3.7.4.1 # via apache-libcloud unicodecsv==0.14.1 # via cliff diff --git a/requirements3.txt b/requirements3.txt index 102c69ff7..be541af39 100644 --- a/requirements3.txt +++ b/requirements3.txt @@ -95,6 +95,7 @@ s3transfer==0.2.1 # via boto3 simplejson==3.10.0 # via osc-lib, python-cinderclient, python-neutronclient, python-novaclient six==1.14.0 # via bcrypt, cliff, cmd2, configobj, cryptography, debtcollector, keystoneauth1, more-itertools, openstacksdk, osc-lib, oslo.config, oslo.i18n, oslo.serialization, oslo.utils, pip-tools, pynacl, pyopenssl, pytest, python-cinderclient, python-dateutil, python-glanceclient, python-keystoneclient, python-neutronclient, python-novaclient, python-openstackclient, stevedore, teuthology, tox, warlock stevedore==1.21.0 # via cliff, keystoneauth1, openstacksdk, osc-lib, oslo.config, python-keystoneclient +toml==0.10.1 # via teuthology tox==3.0.0 # via teuthology urllib3==1.25.3 # via botocore, requests virtualenv==15.1.0 # via tox diff --git a/setup.py b/setup.py index 4becb3585..bd7f3f23c 100644 --- a/setup.py +++ b/setup.py @@ -103,6 +103,7 @@ setup( 'boto3', 'PyJWT', # for qa/tasks/mgr/dashboard/test_auth.py 'ipy', # for qa/tasks/cephfs/mount.py + 'toml', # for qa/tasks/cephadm.py ] },