This would simplify the deployment process for you @gpocentek From the [travis documentation](https://docs.travis-ci.com/user/deployment/pypi/) ```txt travis encrypt your-password-here --add deploy.password ``` ```yaml deploy: provider: pypi user: "Your username" password: secure: "Your encrypted password" ```