From b2db92cab923b67a2f9d472214eeee83ea7978e6 Mon Sep 17 00:00:00 2001 From: Nik Nyby Date: Thu, 25 May 2017 16:05:54 -0400 Subject: [PATCH] fix wheel generation The `distributions` option belongs in the `deploy` section: https://docs.travis-ci.com/user/deployment/pypi/#Uploading-different-distributions Currently only the sdist package is getting deployed: https://pypi.python.org/pypi/django-pagetree/1.3.2 --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index fbd44b1..aebe7df 100644 --- a/.travis.yml +++ b/.travis.yml @@ -24,10 +24,10 @@ after_success: - coveralls deploy: provider: pypi + distributions: "sdist bdist_wheel" user: ctlpypi password: secure: QIkQv0T6VKP4PUNzI9JXRi2IUy9gGpf0pO4kKgzgaUOOavfwnWrcpWD0RpVOqFu9+hcreKPENAxnXomMu8GSnSsW/61YZ97bM6ZqzstgRDZvmwK4UijYDrqw4nc5Jq9H3h/TQSvtTL+UBzCyLP/F/p6Jsx08Cacciv3CJVKo9Qs= on: tags: true - distributions: sdist bdist_wheel repo: ccnmtl/django-pagetree