我正在尝试通过 github 操作在 Pypi 上为 linux 和 windows 上传一个包
使用 linux 我得到了这个结果
Binary wheel 'xxx-cp36-cp36m-linux_x86_64.whl' has an unsupported platform tag 'linux_x86_64'.
在 Windows 安装期间
InvalidDistribution: Cannot find file (or expand pattern): 'dist/*'
上传的代码是
python setup.py sdist bdist_wheel
twine upload dist/* --verbose
任何想法如何上传 linux 和 windows 的发行版?