From 188f39c509f1056c3784aad6954498f31de955a3 Mon Sep 17 00:00:00 2001 From: David Brochart Date: Thu, 21 Nov 2024 13:16:35 +0100 Subject: [PATCH] Remove base setup (#1299) --- .github/workflows/ci.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 70b3bf40..98deaf12 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,8 +36,14 @@ jobs: - name: Checkout uses: actions/checkout@v4 - - name: Base Setup - uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1 + - uses: actions/setup-python@v5 + with: + python-version: ${{ matrix.python-version }} + + - name: Install hatch + run: | + python --version + python -m pip install hatch - name: Run the tests timeout-minutes: 15