From 2aac20fa5bcc1fc07071c9a43d0d4ade8f227446 Mon Sep 17 00:00:00 2001 From: IgorTatarnikov Date: Mon, 30 Oct 2023 15:29:53 +0000 Subject: [PATCH] Force python 3.10 to install first --- .github/workflows/test_and_deploy.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test_and_deploy.yml b/.github/workflows/test_and_deploy.yml index eb7a770f..b5574106 100644 --- a/.github/workflows/test_and_deploy.yml +++ b/.github/workflows/test_and_deploy.yml @@ -37,9 +37,16 @@ jobs: run: brew install hdf5 # Run tests - - uses: actions/checkout@v3 + - name: Set up Python 3.10 + if: runner.os == 'Windows' + uses: actions/setup-python@v4 + with: + python-version: 3.10 + - name: Setup tmate session + if: runner.os == 'Windows' uses: mxschmitt/action-tmate@v3 + - uses: neuroinformatics-unit/actions/test@v2 with: python-version: ${{ matrix.python-version }}