When deploying from Travis CI to PyPi I get the following errors:
HTTPError: 403 Client Error: Invalid or non-existent authentication information. for url: https://upload.pypi.org/legacy/
I’ve have followed closely the Travis CI documentation for pypi deployment and have setup my PyPI username and password, with the it encrypted with the password encryption docs. The password does not have any escape-worthy characters but I’ve tried escaping all characters regardless, but I still get the error.
Nothing seems to work, any advice?
The relevant section of the Travis CI config is:
- provider: pypi
on:
branch: master
tags: true
user: "<<username>>"
password:
secure: "<<encrypted password>>"
distributions: "sdist bdist_wheel"
skip_existing: true
don’t want to reveal secrets on forum but I think the idea here is clear. sorry for all the questions.
SU
Norway