From 4561930b82f86eca91b5e2039e2d4c33bcfc16a4 Mon Sep 17 00:00:00 2001 From: sharkykh Date: Sun, 29 Dec 2019 09:04:31 +0200 Subject: [PATCH] Fix PyPI wheel deployment (#1330) `distributions` should be under `deploy`, not `deploy.on` https://docs.travis-ci.com/user/deployment/pypi/#uploading-different-distributions --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 98100e1c..103c78cc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -19,11 +19,11 @@ notifications: deploy: provider: pypi skip_existing: true + distributions: sdist bdist_wheel user: jacquev6 password: secure: eorsWtbj7JUBcy/Ovohg2yxyvyF4Sz9QNqtdPJhLSBzd1S01qoVLVAqsQhfZTxMlSOE4RCPOm+VodhV55oa1RboLah4DpDDW998J61QSo9im7Ch2GBkL3C6XqhWAFr6g4KqTG4h/6QTp5dF8vebXiMADmpshCMMpUxm3FccFY7k= on: tags: true - distributions: "sdist bdist_wheel" repo: PyGithub/PyGithub python: "2.7"