-
-
Notifications
You must be signed in to change notification settings - Fork 51
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
Pip and Wheels #151
Comments
Hello @DaAwesomeP, thanks for offering help with the project -- this is very much welcome. It would be indeed great to have a release process in place and upload to pip. Contribution for this is welcome. I would suggest an approach similar to vpype, where the process is triggered by tagging a version number and as much as possible is automated. That said, although enabling |
Fantastic! I'll get started.
Yes, definitely. I plan for it to create a release, attach the wheel files to the release, and upload to Pypi when a new tag is pushed. I will also see if the version numbering can be automated with PySide2 is a bit different on the Pi. It's not distributed through Pypi but instead from the Debian repos. It can be installed with Piwheels is a service that builds wheels on Raspberry Pis for packages that don't already build them. It is enabled by default on Raspberry Pi OS. https://www.piwheels.org/
I have not tried it yet, so you are probably right. I would wonder if there are any >2.1-specific features being used, but yes this is a separate issue. |
Ah, well I should have paid more attention. This package is an |
Hello!
Just want to check if this is wanted before I work on it: I would like to work on a pull request to automate building the source distribution (sdist) and wheels (for all platforms poetry currently supports) with GitHub Actions. This would allow the package to be uploaded to Pypi with an easier install process (when you run
pip install vsketch
it will select the right wheel).The wheels mean you don't have to build it when you install it, it will just pick the right precompiled wheel and install it, no build dependencies required. If a wheel for the platform isn't available, then it will still build from source using the sdist. If we do it right, then PiWheels will also build a wheel as well and add it to their repository, making it even easier to install on the Raspberry Pi.
Thanks!
The text was updated successfully, but these errors were encountered: