Revert "Include tar.gz.asc / whl.asc for twine"

Talking with fungi, the next version of pypi won't support asc files
being displayed. So, just revert for now. Also, this needs to be a
single twine command if we do want to support them.

This reverts commit 356c9807c3.

Change-Id: Ied130a1380ff2a404b9fdadb7c0cddd10cc757c5
Signed-off-by: Paul Belanger <pabelanger@redhat.com>
This commit is contained in:
Paul Belanger 2017-08-25 16:32:37 -04:00
parent 0a4f5117df
commit f49614bbcd
No known key found for this signature in database
GPG Key ID: 611A80832067AF38
1 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@
- name: Find wheels to upload
find:
paths: "{{ pypi_path }}"
patterns: "*.whl,*.whl.asc"
patterns: "*.whl"
register: found_wheels
- name: Upload wheel with twine before tarballs
@ -17,7 +17,7 @@
- name: Find tarballs to upload
find:
paths: "{{ pypi_path }}"
patterns: "*.tar.gz,*.tar.gz.asc"
patterns: "*.tar.gz"
register: found_tarballs
- name: Upload tarballs with twine