From dbbedd2abb77375b8ddc9807c54ed8b8df6a1aa3 Mon Sep 17 00:00:00 2001 From: Doug Hellmann Date: Thu, 4 Oct 2018 08:17:37 -0400 Subject: [PATCH] disable 'wheel fix' command Change-Id: Iec38b3645882fb516d9686b2938159e991a5ebf8 Signed-off-by: Doug Hellmann --- goal_tools/python3_first/wheelsettings.py | 2 ++ setup.cfg | 2 +- tools/python3-first/propose-wheel.sh | 3 +++ 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/goal_tools/python3_first/wheelsettings.py b/goal_tools/python3_first/wheelsettings.py index 430fa44..a8133f4 100644 --- a/goal_tools/python3_first/wheelsettings.py +++ b/goal_tools/python3_first/wheelsettings.py @@ -171,6 +171,8 @@ class WheelFixMissingUniversal(command.Command): return parser def take_action(self, parsed_args): + raise RuntimeError('Do not use this tool. ' + 'See https://review.openstack.org/607902') gov_dat = governance.Governance(url=parsed_args.project_list) repos = gov_dat.get_repos() diff --git a/setup.cfg b/setup.cfg index 77a4061..9a7764a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -64,7 +64,7 @@ python3_first = tox missing = goal_tools.python3_first.toxsettings:ToxMissingPy3 tox fix = goal_tools.python3_first.toxsettings:ToxFixMissingPy3 wheel missing = goal_tools.python3_first.wheelsettings:WheelMissingUniversal - wheel fix = goal_tools.python3_first.wheelsettings:WheelFixMissingUniversal + #wheel fix = goal_tools.python3_first.wheelsettings:WheelFixMissingUniversal [wheel] universal = 1 diff --git a/tools/python3-first/propose-wheel.sh b/tools/python3-first/propose-wheel.sh index 3b3e755..800410f 100755 --- a/tools/python3-first/propose-wheel.sh +++ b/tools/python3-first/propose-wheel.sh @@ -1,5 +1,8 @@ #!/bin/bash +echo "We will not need this. See https://review.openstack.org/607902" +exit 1 + bindir=$(dirname $0) source $bindir/functions