databricks-tellr 0.3.11.dev7__tar.gz → 0.3.11.dev9__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.
- {databricks_tellr-0.3.11.dev7 → databricks_tellr-0.3.11.dev9}/PKG-INFO +1 -1
- {databricks_tellr-0.3.11.dev7 → databricks_tellr-0.3.11.dev9}/databricks_tellr/deploy.py +41 -0
- {databricks_tellr-0.3.11.dev7 → databricks_tellr-0.3.11.dev9}/databricks_tellr.egg-info/PKG-INFO +1 -1
- {databricks_tellr-0.3.11.dev7 → databricks_tellr-0.3.11.dev9}/pyproject.toml +1 -1
- {databricks_tellr-0.3.11.dev7 → databricks_tellr-0.3.11.dev9}/README.md +0 -0
- {databricks_tellr-0.3.11.dev7 → databricks_tellr-0.3.11.dev9}/databricks_tellr/__init__.py +0 -0
- {databricks_tellr-0.3.11.dev7 → databricks_tellr-0.3.11.dev9}/databricks_tellr/_templates/app.yaml.template +0 -0
- {databricks_tellr-0.3.11.dev7 → databricks_tellr-0.3.11.dev9}/databricks_tellr/_templates/requirements.txt.template +0 -0
- {databricks_tellr-0.3.11.dev7 → databricks_tellr-0.3.11.dev9}/databricks_tellr.egg-info/SOURCES.txt +0 -0
- {databricks_tellr-0.3.11.dev7 → databricks_tellr-0.3.11.dev9}/databricks_tellr.egg-info/dependency_links.txt +0 -0
- {databricks_tellr-0.3.11.dev7 → databricks_tellr-0.3.11.dev9}/databricks_tellr.egg-info/requires.txt +0 -0
- {databricks_tellr-0.3.11.dev7 → databricks_tellr-0.3.11.dev9}/databricks_tellr.egg-info/top_level.txt +0 -0
- {databricks_tellr-0.3.11.dev7 → databricks_tellr-0.3.11.dev9}/setup.cfg +0 -0
|
@@ -1233,6 +1233,7 @@ def _write_requirements(
|
|
|
1233
1233
|
(e.g., "./wheels/databricks_tellr_app-0.1.18-py3-none-any.whl")
|
|
1234
1234
|
instead of installing from PyPI
|
|
1235
1235
|
"""
|
|
1236
|
+
extra_pins: list[str] = []
|
|
1236
1237
|
if local_wheel_path:
|
|
1237
1238
|
# Use local wheel reference - pip will install from uploaded wheel
|
|
1238
1239
|
package_line = local_wheel_path
|
|
@@ -1249,16 +1250,56 @@ def _write_requirements(
|
|
|
1249
1250
|
package_line = f"databricks-tellr-app=={resolved_version}"
|
|
1250
1251
|
else:
|
|
1251
1252
|
package_line = "databricks-tellr-app"
|
|
1253
|
+
extra_pins = _RESOLVER_SPEEDUP_PINS
|
|
1252
1254
|
|
|
1253
1255
|
content = "\n".join(
|
|
1254
1256
|
[
|
|
1255
1257
|
"# Generated by databricks-tellr",
|
|
1256
1258
|
package_line,
|
|
1259
|
+
*extra_pins,
|
|
1257
1260
|
]
|
|
1258
1261
|
)
|
|
1259
1262
|
(staging_dir / "requirements.txt").write_text(content)
|
|
1260
1263
|
|
|
1261
1264
|
|
|
1265
|
+
# The Databricks Apps BUILD phase kills deployments whose install exceeds the
|
|
1266
|
+
# ~10-minute startup budget, and on FEVM workspaces its connectivity to the
|
|
1267
|
+
# PyPI mirror is known-flaky (see #fevm-feedback / #apa-apps, July 2026), so
|
|
1268
|
+
# every avoidable metadata fetch is a timeout risk. The app's ranged direct
|
|
1269
|
+
# dependencies plus unpinned transitives (databricks-sdk, mlflow[databricks],
|
|
1270
|
+
# the langchain/unitycatalog cluster) send pip's resolver into heavy
|
|
1271
|
+
# backtracking as new versions land on PyPI — observed taking >6.5 min to
|
|
1272
|
+
# resolve even locally on a healthy connection, which failed every Apps
|
|
1273
|
+
# deploy (including previously-good stable versions) with "App process did
|
|
1274
|
+
# not start within 10 minutes".
|
|
1275
|
+
#
|
|
1276
|
+
# These pins are one known-good resolution (pip install --dry-run --report of
|
|
1277
|
+
# the app wheel, July 2026) and short-circuit the search. They must always
|
|
1278
|
+
# satisfy the ranges declared in packages/databricks-tellr-app/pyproject.toml;
|
|
1279
|
+
# refresh them with a new dry-run resolve if that file's constraints change.
|
|
1280
|
+
_RESOLVER_SPEEDUP_PINS = [
|
|
1281
|
+
"# Resolver-speedup pins (see _RESOLVER_SPEEDUP_PINS in databricks_tellr.deploy)",
|
|
1282
|
+
"databricks-agents==1.11.0",
|
|
1283
|
+
"databricks-ai-bridge==0.21.0",
|
|
1284
|
+
"databricks-ai-search==0.76",
|
|
1285
|
+
"databricks-connect==16.1.7",
|
|
1286
|
+
"databricks-sdk==0.120.0",
|
|
1287
|
+
"databricks-vectorsearch==0.75",
|
|
1288
|
+
"langchain==1.0.5",
|
|
1289
|
+
"langchain-classic==1.0.0",
|
|
1290
|
+
"langchain-community==0.4.1",
|
|
1291
|
+
"langchain-core==1.0.4",
|
|
1292
|
+
"langgraph==1.0.10",
|
|
1293
|
+
"langgraph-prebuilt==1.0.10",
|
|
1294
|
+
"langsmith==0.9.5",
|
|
1295
|
+
"litellm==1.80.11",
|
|
1296
|
+
"mlflow==3.14.0",
|
|
1297
|
+
"mlflow-skinny==3.14.0",
|
|
1298
|
+
"unitycatalog-ai==0.3.2",
|
|
1299
|
+
"unitycatalog-langchain==0.3.0",
|
|
1300
|
+
]
|
|
1301
|
+
|
|
1302
|
+
|
|
1262
1303
|
def _resolve_installed_app_version() -> str | None:
|
|
1263
1304
|
"""Try to resolve the installed version of databricks-tellr-app."""
|
|
1264
1305
|
try:
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{databricks_tellr-0.3.11.dev7 → databricks_tellr-0.3.11.dev9}/databricks_tellr.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{databricks_tellr-0.3.11.dev7 → databricks_tellr-0.3.11.dev9}/databricks_tellr.egg-info/requires.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|