Merge "Revert "Make sure wheel is installed for python releases""

This commit is contained in:
Zuul 2020-06-17 13:10:45 +00:00 committed by Gerrit Code Review
commit e766c6cc9b

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: