Whenever I get ready to release a new version of a pypi package, I do the following:
del .dist* && python -m build # build pypi packages
python -m twine upload dist/*
The del .dist*
takes care of removing older packages.
Does anyone else keep the old ones around for some reason?
I suppose I could do something like this:
Move .dist* .dist-archive
instead.
Is there a better workflow that you would suggest?