From 9da26aaeaee8326b067a485d9ed8170c528200c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Olivier=20Ch=C3=A9dru?= Date: Fri, 22 Sep 2023 16:05:26 +0200 Subject: [PATCH] No longer build for Python 3.5 (#112) --- .github/workflows/build.yml | 2 +- .github/workflows/release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index fde0002..c0e73f1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-20.04 strategy: matrix: - python-version: [ '3.5', '3.6', '3.7', '3.8', '3.9', '3.10', '3.11' ] + python-version: [ '3.6', '3.7', '3.8', '3.9', '3.10', '3.11' ] steps: - uses: actions/checkout@v4 - name: set up Python ${{ matrix.python-version }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 62e3a61..1ff83e1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-20.04 strategy: matrix: - python-version: [ '3.5', '3.6', '3.7', '3.8', '3.9', '3.10', '3.11' ] + python-version: [ '3.6', '3.7', '3.8', '3.9', '3.10', '3.11' ] steps: - uses: actions/checkout@v4 - name: set up Python ${{ matrix.python-version }}