From 9c6fd425067278ab579a25fb86a0b975644b11aa Mon Sep 17 00:00:00 2001 From: Samuel Janas Date: Mon, 6 Nov 2023 15:23:54 +0100 Subject: [PATCH] upgrade python version --- .github/workflows/ci_tests.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci_tests.yaml b/.github/workflows/ci_tests.yaml index 2ac8a9e..4f4aa26 100644 --- a/.github/workflows/ci_tests.yaml +++ b/.github/workflows/ci_tests.yaml @@ -12,12 +12,12 @@ jobs: - name: Set up Python uses: actions/setup-python@v2 with: - python-version: '3.8' # Specify the Python version you need + python-version: '3.10' # Specify the Python version you need - name: Install dependencies run: | python -m pip install --upgrade pip - if [ -f requirements.txt ]; then pip install -r requirements.txt; fi + pip install -r requirements.txt - name: Test with pytest run: |