From 15cba7235986ea868ed8f08ad65035c5b507b9d8 Mon Sep 17 00:00:00 2001 From: Tim Burke Date: Tue, 2 Apr 2019 14:30:33 -0700 Subject: [PATCH] Exclude linux_x86_64 wheels from upload to PyPI ...who would just reject them with Binary wheel '...' has an unsupported platform tag 'linux_x86_64'. anyway. Change-Id: Ie656de99ec1a7b00490f99b89dfc33d5e73ad079 --- roles/upload-pypi/tasks/main.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/roles/upload-pypi/tasks/main.yaml b/roles/upload-pypi/tasks/main.yaml index fb5c10cc8..5a32bcb23 100644 --- a/roles/upload-pypi/tasks/main.yaml +++ b/roles/upload-pypi/tasks/main.yaml @@ -13,6 +13,7 @@ find: paths: "{{ pypi_path }}" patterns: "*.whl" + excludes: "*-linux_x86_64.whl" register: found_wheels - name: Report no wheels to be uploaded