datajunction-server 0.0.243__tar.gz → 0.0.245__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {datajunction_server-0.0.243 → datajunction_server-0.0.245}/PKG-INFO +2 -1
- {datajunction_server-0.0.243 → datajunction_server-0.0.245}/pyproject.toml +6 -0
- {datajunction_server-0.0.243 → datajunction_server-0.0.245}/.gitignore +0 -0
- {datajunction_server-0.0.243 → datajunction_server-0.0.245}/README.md +0 -0
- {datajunction_server-0.0.243 → datajunction_server-0.0.245}/datajunction_server/api/graphql/schema.graphql +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.5
|
|
2
2
|
Name: datajunction-server
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.245
|
|
4
4
|
Summary: DataJunction server library for running to a DataJunction server
|
|
5
5
|
Project-URL: Homepage, https://datajunction.io
|
|
6
6
|
Project-URL: Repository, https://github.com/DataJunction/dj
|
|
@@ -17,6 +17,7 @@ Requires-Dist: antlr4-python3-runtime==4.13.1
|
|
|
17
17
|
Requires-Dist: bcrypt<=4.3.0,>=4.0.1
|
|
18
18
|
Requires-Dist: cachelib<1.0.0,>=0.10.2
|
|
19
19
|
Requires-Dist: cachetools>=5.3.1
|
|
20
|
+
Requires-Dist: cel-expr-python>=0.1.3
|
|
20
21
|
Requires-Dist: celery<6.0.0,>=5.2.7
|
|
21
22
|
Requires-Dist: cryptography<=45.0.0
|
|
22
23
|
Requires-Dist: fastapi-cache2>=0.2.1
|
|
@@ -67,6 +67,12 @@ dependencies = [
|
|
|
67
67
|
# has no fallback (see datajunction_server/transpilation.py).
|
|
68
68
|
"sqlglot>=18.0.1",
|
|
69
69
|
|
|
70
|
+
# CEL expression evaluation — required: DJ evaluates CEL expressions and has
|
|
71
|
+
# no pure-Python fallback. Wheel-only (no sdist), so an unsupported platform
|
|
72
|
+
# is a hard install failure rather than a slow source build; the Linux wheels
|
|
73
|
+
# are manylinux_2_28, i.e. a glibc >= 2.28 floor.
|
|
74
|
+
"cel-expr-python>=0.1.3",
|
|
75
|
+
|
|
70
76
|
# Model Context Protocol (powers /mcp endpoint)
|
|
71
77
|
"mcp>=1.0.0",
|
|
72
78
|
# Terminal-friendly charts for the MCP visualize_metrics tool
|
|
File without changes
|
|
File without changes
|
|
File without changes
|