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