How to upload the files generated by python -m build
to pypi?
#62
Labels
help wanted
Extra attention is needed
python -m build
to pypi?
#62
When uploading the files generated by
python -m build
to pypi, I received the following error. How to fix it?Summary:
pyproject.toml
Clean up the build process #54 by following the official pybind guideline.dist
bypython setup.py sdist
is now deprecated. I replaced it withpython -m build
. Usepython -m build
to build the library when uploading to pypi #60python -m build
generates a file something likerii-0.2.11-cp312-cp312-linux_x86_64.whl
. But pypi doesn't accept this name. It should be a simpler filename such asrii-0.2.10.tar.gz
? Ref: previous successful fileThe text was updated successfully, but these errors were encountered: