We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
As proposed here:
from datasette_test import Datasette ds = Datasette( plugin_config={"datasette-extract": "..."}, permissions={"manage-secrets": {"id": "admin"}} )
Where that permissions= thing uses config={"permissions": ...} for Datasette 1.0a+ and some more complex plugin-based mechanism for <1.0.
permissions=
config={"permissions": ...}
The text was updated successfully, but these errors were encountered:
Ran into this bug:
(Pdb) datasette.version.__version_info__ ('1', '0a13') (Pdb) datasette.version.__version_info__ < ("1", "0a8") True
0a13 is incorrectly returning as a lower version that 0a8. Fix is to do this: https://til.simonwillison.net/python/comparing-version-numbers
0a13
0a8
from packaging.version import parse v_1_0 = parse("1.0") v_1_0a13 = parse("1.0a13") v_0631 = parse("0.63.1")
Sorry, something went wrong.
45789d0
Missing file, refs #4
121136d
Docs: https://github.com/datasette/datasette-test/tree/121136dad1e01f41e6a0d69ed270e661e181c996?tab=readme-ov-file#permissions-convenience-argument
Release 0.3
cd06e87
Refs #4, #5 Refs simonw/datasette#2335
No branches or pull requests
As proposed here:
The text was updated successfully, but these errors were encountered: