I see that packages from this repository are published only with source distributions eg https://pypi.org/project/testit-python-commons/4.2.6/#files, so that every user has to build the wheel themselves. Better for package owners to build and publish wheels once and for all.
I did not find a workflow in this repository for publishing or I would have submitted a pull request. If you are doing this manually a typical sequence would be something like
python -m pip install build twine
python -m build
twine publish dist/*
I see that packages from this repository are published only with source distributions eg https://pypi.org/project/testit-python-commons/4.2.6/#files, so that every user has to build the wheel themselves. Better for package owners to build and publish wheels once and for all.
I did not find a workflow in this repository for publishing or I would have submitted a pull request. If you are doing this manually a typical sequence would be something like