madpah / requirements-parser

A Pip requirements file parser.
https://requirements-parser.readthedocs.io
Apache License 2.0
125 stars 41 forks source link

Can you publish a universal (2 & 3) wheel? #55

Closed matthewdeanmartin closed 2 years ago

matthewdeanmartin commented 2 years ago

Usually you get a universal wheel by default, this set of files as of now is only a python 2 wheel.

python setup.py bdist_wheel

This question suggests that if you aren't getting an universal wheel to try

python3 setup.py bdist_wheel --universal https://stackoverflow.com/a/30438777/33264

Anyhow, some upstream projects that would prefer to use wheels as a supply chain security mitigation would much appreciate it.

Matthew Martin

madpah commented 2 years ago

@matthewdeanmartin - a Python 3 wheel has now been published as of 0.3.0.

Python 2 support has been deprecated it is now EOL (https://www.python.org/downloads/).

matthewdeanmartin commented 2 years ago

Perfect, thanks!