From cb4316243e36aedef419988a7f155a30f200266e Mon Sep 17 00:00:00 2001 From: Giacomo-Antonioli Date: Thu, 29 Feb 2024 00:13:53 +0100 Subject: [PATCH] migrated to python 3.9 as minimum version --- .github/workflows/tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index b002575..64bd3ba 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -13,10 +13,10 @@ jobs: steps: - uses: actions/checkout@v4.1.1 - - name: Set up Python 3.8 + - name: Set up Python 3.9 uses: actions/setup-python@v4.7.1 with: - python-version: 3.8 + python-version: 3.9 - name: Install system deps shell: bash @@ -36,7 +36,7 @@ jobs: strategy: matrix: os: [Ubuntu, MacOS, Windows] - python-version: ['3.8', '3.9', '3.10', '3.11'] + python-version: ['3.9', '3.10', '3.11'] fail-fast: true steps: - uses: actions/checkout@v4.1.1