From 243db4c3ebc6cee150f87622488161f908a158b2 Mon Sep 17 00:00:00 2001 From: Denis Bilenko Date: Thu, 26 Mar 2026 11:21:59 +0100 Subject: [PATCH 1/4] dummy commit to test main --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 3c238702cf..3dd5115952 100644 --- a/README.md +++ b/README.md @@ -38,3 +38,5 @@ You can find a detailed description at https://github.com/databricks/databricks- ## Privacy Notice Databricks CLI use is subject to the [Databricks License](https://github.com/databricks/cli/blob/main/LICENSE) and [Databricks Privacy Notice](https://www.databricks.com/legal/privacynotice), including any Usage Data provisions. + +testing From 4d01c3c6ec90ba8f31195f0f062cede8c843a78b Mon Sep 17 00:00:00 2001 From: Denis Bilenko Date: Thu, 26 Mar 2026 12:32:42 +0100 Subject: [PATCH 2/4] Add make install-pythons and pre-install Python versions in CI Patchwheel tests run with UV_OFFLINE=true and require Python 3.9-3.13 to be pre-installed in uv's managed cache. Co-authored-by: Isaac --- .github/actions/setup-build-environment/action.yml | 4 ++++ Makefile | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/.github/actions/setup-build-environment/action.yml b/.github/actions/setup-build-environment/action.yml index 5c9db17560..d05d948a5c 100644 --- a/.github/actions/setup-build-environment/action.yml +++ b/.github/actions/setup-build-environment/action.yml @@ -34,6 +34,10 @@ runs: with: version: "0.8.9" + - name: Install Python versions for patchwheel tests + run: uv python install 3.9 3.10 3.11 3.12 3.13 + shell: bash + - name: Install ruff (Python linter and formatter) uses: astral-sh/ruff-action@4919ec5cf1f49eff0871dbcea0da843445b837e6 # v3.6.1 with: diff --git a/Makefile b/Makefile index 5714483a36..d85882493a 100644 --- a/Makefile +++ b/Makefile @@ -70,6 +70,10 @@ links: checks: tidy ws links +.PHONY: install-pythons +install-pythons: + uv python install 3.9 3.10 3.11 3.12 3.13 + # Run short unit and acceptance tests (testing.Short() is true). .PHONY: test test: test-unit test-acc From 8f3598e03c6f8a9fe6d2f271b5fdf6aca4e9dada Mon Sep 17 00:00:00 2001 From: Denis Bilenko Date: Thu, 26 Mar 2026 12:34:46 +0100 Subject: [PATCH 3/4] Use make install-pythons in CI and fix step name Co-authored-by: Isaac --- .github/actions/setup-build-environment/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/setup-build-environment/action.yml b/.github/actions/setup-build-environment/action.yml index d05d948a5c..13901c4c94 100644 --- a/.github/actions/setup-build-environment/action.yml +++ b/.github/actions/setup-build-environment/action.yml @@ -34,8 +34,8 @@ runs: with: version: "0.8.9" - - name: Install Python versions for patchwheel tests - run: uv python install 3.9 3.10 3.11 3.12 3.13 + - name: Install Python versions for tests + run: make install-pythons shell: bash - name: Install ruff (Python linter and formatter) From 3298df6e337107d04856ac1bbd671e439812fad2 Mon Sep 17 00:00:00 2001 From: Denis Bilenko Date: Thu, 26 Mar 2026 12:38:22 +0100 Subject: [PATCH 4/4] Revert "dummy commit to test main" This reverts commit 243db4c3ebc6cee150f87622488161f908a158b2. --- README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/README.md b/README.md index 3dd5115952..3c238702cf 100644 --- a/README.md +++ b/README.md @@ -38,5 +38,3 @@ You can find a detailed description at https://github.com/databricks/databricks- ## Privacy Notice Databricks CLI use is subject to the [Databricks License](https://github.com/databricks/cli/blob/main/LICENSE) and [Databricks Privacy Notice](https://www.databricks.com/legal/privacynotice), including any Usage Data provisions. - -testing