From 2dfcdc8f56831adf72bc471e0de710509079afb6 Mon Sep 17 00:00:00 2001 From: Khalim Conn-Kowlessar Date: Tue, 12 Sep 2023 15:54:40 +0100 Subject: [PATCH] fixing python 3.10 --- .github/workflows/unit_tests.yml | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/.github/workflows/unit_tests.yml b/.github/workflows/unit_tests.yml index 19a731e6..b5a17092 100644 --- a/.github/workflows/unit_tests.yml +++ b/.github/workflows/unit_tests.yml @@ -1,4 +1,4 @@ -name: Python package +name: Run unit tests on: [ push, pull_request ] @@ -6,16 +6,19 @@ jobs: build: runs-on: ubuntu-latest - strategy: - matrix: - python-version: [ 3.8, 3.9, 3.10 ] + # For the moment, we just run with python 3.10 + # strategy: + # matrix: + # python-version: [ 3.8, 3.9, 3.10 ] steps: - uses: actions/checkout@v2 - - name: Set up Python ${{ matrix.python-version }} + # - name: Set up Python ${{ matrix.python-version }} + - name: Set up Python 3.10 uses: actions/setup-python@v2 with: - python-version: ${{ matrix.python-version }} + # python-version: ${{ matrix.python-version }} + python-version: 3.10 - name: Install dependencies run: | python -m pip install --upgrade pip