我正在尝试通过Travis-ci部署PyPI模块。
这是我的.travis.yml
:
language: python
deploy:
provider: pypi
username: __token__
password:
secure: "My secure token"
distributions: "sdist bdist_wheel"
skip_existing: true
这是我的构建消息:
它始终无法构建而没有错误消息。
如何更改.travis.yml
才能成功部署?