You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be great if this package published Python wheels, so that consumers didn't need to run the package's setup.py as part of their install process.
I think it could be as simple as adding bdist_wheel to the shipit.yml file, though you may also want to add:
[bdist_wheel]
universal = True
to your setup.cfg.
Not sure if I'm missing a reason that wheels wouldn't work for this project though?
The text was updated successfully, but these errors were encountered:
Is for projects which are single-source (and I think the same dependencies) between Python 2 & 3, so I'm not sure that applies here.
Would you be open to a PR which adds a call to bdist_wheel in the build process? Unless there are any native dependencies (it doesn't look like there are) that's all that should be needed to get wheels out for the version of python that that runs as. Getting wheels for the other version of Python might be a bit more involved, though if that's running as Python 3 it's maybe ok to leave Python 2 without wheels at this point?
It would be great if this package published Python wheels, so that consumers didn't need to run the package's
setup.py
as part of their install process.I think it could be as simple as adding
bdist_wheel
to theshipit.yml
file, though you may also want to add:to your
setup.cfg
.Not sure if I'm missing a reason that wheels wouldn't work for this project though?
The text was updated successfully, but these errors were encountered: