Revert "Make sure wheel is installed for python releases"

This broke multiple zuul deployments. Please do not make changes without having tests on them.

This reverts commit fe4ce563f2.

Change-Id: I0eac14d9c9c4e717883965e37fa6e3bbaf37f35a
This commit is contained in:
Sorin Sbarnea (zbr) 2020-06-17 12:25:17 +00:00
parent fe4ce563f2
commit 548d2b387a
1 changed files with 0 additions and 10 deletions

View File

@ -1,13 +1,3 @@
- name: Check for wheel
command: "{{ release_python }} -m wheel"
failed_when: false
register: wheel_exists
- name: Install wheel
command: "{{ release_python }} -m pip install wheel"
become: yes
when: wheel_exists.rc != 0
- name: Build a tarball and wheel
command: "{{ release_python }} setup.py sdist bdist_wheel {{ bdist_wheel_xargs }}"
args: