-
Notifications
You must be signed in to change notification settings - Fork 97
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[request] Ship wheels too #58
Comments
Cross reference: pypa/cibuildwheel#494, specifically I list reasons to ship a Python wheel in more detail in pypa/cibuildwheel#494 (comment) . |
Hey, I'm happy to do this, but can't spare cycles to change my process. Can you please check https://github.com/idank/bashlex#releasing-a-new-version and let me know what commands need to run instead? |
Two possibilities. The simplest one: Add The better one: Add a |
Hi @idank! Thank you for the bash parser! It will help to us in xonsh project. Please don't kill your project. I want to tell you how to making release faster with Github Actions:
After this you just need to change the version in |
Could you please also include a wheel when releasing bashlex? Only the classic ".egg" is provided, so this triggers a SDist install (I don't think .egg's are used anymore, setuptools-scm is the only other package I know still also providing an egg). See reasons listed here: https://pythonwheels.com for why wheels are nice, even for pure-python packages (faster, better security, pre-generates .pyc's, etc). Thank you!
pip wheel .
will make one, or usepip install build && python -m build
(may be best with a pyproject.toml too, which is also a good idea, but I think it works in legacy mode for simple packages).The text was updated successfully, but these errors were encountered: