Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

travis setup pypi adds "distributions" to deploy conditions #373

Open
jthi3rry opened this issue Mar 1, 2016 · 3 comments
Open

travis setup pypi adds "distributions" to deploy conditions #373

jthi3rry opened this issue Mar 1, 2016 · 3 comments

Comments

@jthi3rry
Copy link

jthi3rry commented Mar 1, 2016

travis setup pypi generates the following (distributions under on):

deploy:
  provider: pypi
  user: USERNAME
  password:
    secure: ENCRYPTED_PASSWORD
  on:
    tags: true
    distributions: sdist bdist_wheel
    repo: REPO
    branch: BRANCH

But should generate this instead (distributions under deploy as per https://docs.travis-ci.com/user/deployment/pypi#Uploading-different-distributions):

deploy:
  provider: pypi
  user: USERNAME
  password:
    secure: ENCRYPTED_PASSWORD
  distributions: sdist bdist_wheel
  on:
    tags: true
    repo: REPO
    branch: BRANCH
@jtpereyda
Copy link

I saw the same issue; it was difficult to debug the deployment since Travis never indicated an error or warning.

$ travis --version
1.8.2

@jezdez
Copy link

jezdez commented Jun 24, 2016

Just opened #411 with a possible fix, anyone able to look at it?

@mat128
Copy link

mat128 commented Feb 16, 2017

Also fixed in #480 as I didn't know #411 was up.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants