PyCQA / eradicate

Removes commented-out code from Python files
https://pypi.python.org/pypi/eradicate
206 stars 25 forks source link

Upload wheels to PyPI #30

Closed johnthagen closed 2 years ago

johnthagen commented 2 years ago

Wheels (.whl) for this package are currently missing from PyPI. Could wheels be uploaded for the current and future releases?

Read more about the advantages of wheels to understand why generating wheel distributions are important.

To create a wheel along with source distribution:

(venv) $ pip install --upgrade pip setuptools wheel
(venv) $ python setup.py sdist bdist_wheel

# See dist/*.whl

To upload wheels:

(venv) $ pip install twine
(venv) $ twine upload dist/*
johnthagen commented 2 years ago

This will become more important if #28 is merged because then by default users will be downloading an extra test file that isn't needed just to run the eradicate.

johnthagen commented 2 years ago

2.1.0 has a wheel, which I presume was intentional. So closing this issue.