我正在尝试从github操作在Pypi上上传一个用于Linux和Windows的软件包
使用linux我得到这个结果
Binary wheel 'xxx-cp36-cp36m-linux_x86_64.whl' has an unsupported platform tag 'linux_x86_64'.
在窗口安装期间
InvalidDistribution: Cannot find file (or expand pattern): 'dist/*'
上传的代码是
python setup.py sdist bdist_wheel
twine upload dist/* --verbose
任何想法如何上传Linux和Windows的发行版?
您无法将linux_*.whl
轮上传到 PyPI(原因在这里(。
您需要通过manylinux
项目和auditwheel
工具将此特定于平台的轮子转换为manylinux轮。