Skip to content
Merged
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
4 changes: 2 additions & 2 deletions docs/lakebridge/docs/installation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ databricks configure --host <host> --profile <profile_name>

#### 2.1 Python

**Version Required:** Python 3.10 or newer; verify that the installed version is in the supported versions (3.10–3.13).
**Version Required:** Python between 3.10.1 and 3.13.x (inclusive).

- **Windows** - Install python from [here](https://www.python.org/downloads/).
- **MacOS/Unix** - Use [brew](https://formulae.brew.sh/formula/[email protected]) to install python in macOS/Unix machines
Expand Down Expand Up @@ -150,7 +150,7 @@ Verify all prerequisites before proceeding:
- ☐ Databricks CLI installed on your machine
- ☐ Databricks CLI configured with PAT or Service Principal for your workspace
- ☐ CLI connectivity verified (`databricks clusters list` succeeds)
- ☐ Python 3.10+ installed and verified (`python --version`)
- ☐ Python between 3.10.1 and 3.13.x (inclusive) installed and verified (`python --version`)
- ☐ Java 11+ installed and verified (`java -version`)
- ☐ Network access to GitHub confirmed
- ☐ Network access to Maven Central confirmed
Expand Down
2 changes: 1 addition & 1 deletion labs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ install:
uninstall:
script: src/databricks/labs/lakebridge/uninstall.py
entrypoint: src/databricks/labs/lakebridge/cli.py
min_python: 3.10
min_python: 3.10.1
commands:
- name: analyze
description: Analyze existing non-Databricks database or ETL sources
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description = 'Fast and predictable migrations to Databricks Lakehouse Platform.
license-files = { paths = ["LICENSE", "NOTICE"] }
keywords = ["Databricks"]
readme = "README.md"
requires-python = ">=3.10"
requires-python = ">=3.10.1,<3.14.0"
dynamic = ["version"]
maintainers = [
{ name = "Databricks Labs", email = "[email protected]" },
Expand Down
Loading