From 7b716aa44af2efc1e913e1aeb35ede37f9b7b788 Mon Sep 17 00:00:00 2001 From: Saleh Mir Date: Tue, 11 Feb 2025 19:28:08 +0330 Subject: [PATCH] Update GitHub Actions workflow to use bash shell for dependency installation --- .github/workflows/python-package.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 9b61d62a1..c95e3e6fe 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -46,6 +46,7 @@ jobs: restore-keys: | ${{ runner.os }}-pip- - name: Install dependencies + shell: bash run: | python -m ensurepip --upgrade python -m pip install --upgrade pip @@ -54,6 +55,7 @@ jobs: if [ ! ${{ matrix.python-version }} = "3.10" ]; then pip install numba; fi pip install -e . -U - name: Test with pytest + shell: bash run: | pip install pytest pytest