From b7503cc1846dee4fdb03549471875683964de5ac Mon Sep 17 00:00:00 2001 From: Andrew Snare Date: Mon, 2 Mar 2026 10:29:24 +0100 Subject: [PATCH] Upgrade to Hatch 1.16.5. This version resolves the virtualenv issue. --- .github/workflows/push.yml | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 2b8de619b1..a264df5bec 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -15,7 +15,7 @@ on: - main env: - HATCH_VERSION: 1.14.2 + HATCH_VERSION: 1.16.5 jobs: test-python: @@ -34,8 +34,7 @@ jobs: python-version: '3.10' - name: Install hatch - # see here for more details https://github.com/pypa/hatch/issues/2193 - run: pip install hatch==$HATCH_VERSION "virtualenv<21" + run: pip install hatch==$HATCH_VERSION - name: Run unit tests run: hatch run test @@ -62,8 +61,7 @@ jobs: python-version: 3.10.x - name: Install hatch - # https://github.com/pypa/hatch/issues/2193 - run: pip install hatch==$HATCH_VERSION "virtualenv<21" + run: pip install hatch==$HATCH_VERSION - name: Reformat code run: make fmt @@ -116,8 +114,7 @@ jobs: python-version: 3.10.x - name: Install hatch - # https://github.com/pypa/hatch/issues/2193 - run: pip install hatch==$HATCH_VERSION "virtualenv<21" + run: pip install hatch==$HATCH_VERSION - name: Install Databricks CLI uses: databricks/setup-cli@main