Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions NEXT_CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
* Skip non-exportable objects (e.g., `MLFLOW_EXPERIMENT`) during `workspace export-dir` instead of failing ([#4081](https://github.com/databricks/cli/issues/4081))

### Bundles
* Add `ipykernel` to the `default` template to enable Databricks Connect notebooks in Cursor/VS Code ([#4164](https://github.com/databricks/cli/pull/4164))

### Dependency updates

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ dev = [
"pytest",
"databricks-dlt",
"databricks-connect>=15.4,<15.5",
"ipykernel",
]

[project.scripts]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
"""This file configures pytest.

This file is in the root since it can be used for tests in any place in this
project, including tests under resources/.
"""
"""This file configures pytest, initializes Databricks Connect, and provides fixtures for Spark and loading test data."""

import os, sys, pathlib
from contextlib import contextmanager
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ dev = [
"pytest",
"databricks-dlt",
"databricks-connect>=15.4,<15.5",
"ipykernel",
]

[project.scripts]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
"""This file configures pytest.

This file is in the root since it can be used for tests in any place in this
project, including tests under resources/.
"""
"""This file configures pytest, initializes Databricks Connect, and provides fixtures for Spark and loading test data."""

import os, sys, pathlib
from contextlib import contextmanager
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ dev = [
"pytest",
"databricks-dlt",
"databricks-connect>=15.4,<15.5",
"ipykernel",
]

[project.scripts]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ dev = [
"pytest",
"databricks-dlt",
"databricks-connect>=15.4,<15.5",
"ipykernel",
"databricks-bundles==x.y.z",
]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ dev = [
"pytest",
"databricks-dlt",
"databricks-connect{{template "conservative_db_connect_version_spec"}}",
"ipykernel",
{{- if eq .enable_pydabs "yes" }}
"databricks-bundles=={{template "latest_databricks_bundles_version"}}",
{{- end }}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
"""This file configures pytest.

This file is in the root since it can be used for tests in any place in this
project, including tests under resources/.
"""
"""This file configures pytest, initializes Databricks Connect, and provides fixtures for Spark and loading test data."""

import os, sys, pathlib
from contextlib import contextmanager
Expand Down