From 7c40e8727d570b09fe42f5364643578669e90a05 Mon Sep 17 00:00:00 2001 From: Joe Trabulsy Date: Fri, 24 Jan 2025 19:38:03 -0500 Subject: [PATCH] Remove python 3.8 --- .github/workflows/tests.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 718b0b8..a17de94 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -11,10 +11,10 @@ jobs: steps: - name: Checkout repo uses: actions/checkout@v3 - - name: 'Use Python 3.8' + - name: 'Use Python 3.9' uses: actions/setup-python@v4 with: - python-version: '3.8' + python-version: '3.9' - run: | python -m pip install --upgrade pip pip install -r requirements.txt @@ -32,19 +32,17 @@ jobs: python3 -m pip install types-requests mypy src/pyvesync name: 'MyPy' - pytest: runs-on: ubuntu-latest strategy: matrix: python-version: - - '3.8' - '3.9' - '3.10' - - '3.11' + - '3.11' steps: - name: Checkout repo - uses: actions/checkout@v3 + uses: actions/checkout@v3 - name: 'Use Python ${{matrix.python-version}}' uses: actions/setup-python@v4 with: