-
Notifications
You must be signed in to change notification settings - Fork 17
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
Feature request: pure Python 3 wheel #21
Comments
I ported a subset of the test suite to GitHub Actions as part of this - https://github.com/simonw/click-default-group-wheel/blob/master/.github/workflows/test.yml - though I didn't get You're welcome to take my |
I've published a package to PyPI under the name
I'll happily retire my package (my replacing it with a version that just depends back on I used my new package to ship a new version of https://sqlite-utils.datasette.io/en/stable/changelog.html#v3-26-1 Visit https://pyodide.org/en/stable/console.html and try the following: >>> import micropip
>>> await micropip.install("sqlite-utils")
>>> import sqlite_utils
>>> db = sqlite_utils.Database(memory=True)
>>> list(db.query("select 3 * 5"))
[{'3 * 5': 15}] |
@simonw the wheel is now published. Though, it's tagged as |
Nice! This is great, thank you. https://pypi.org/project/click-default-group/1.2.3/#files ![]() |
Now available as a wheel: - click-contrib/click-default-group#21
* click-default-group>=1.2.3 Now available as a wheel: - click-contrib/click-default-group#21 * Fix for blacken-docs
I've retired my https://github.com/simonw/click-default-group-wheel repo. |
I published one last Package is here: https://pypi.org/project/click-default-group-wheel/ |
I tried to install a package that depends on this inside JupyterLite and got the following error:
Steps to reproduce: navigate to https://jupyterlite.github.io/demo/lab/index.html and run the following:
The text was updated successfully, but these errors were encountered: