From 1ca3ad0a59dae8d480baf76fe5b10b66d9183866 Mon Sep 17 00:00:00 2001 From: Andreas Motl Date: Sun, 21 Jul 2024 02:15:44 +0200 Subject: [PATCH] Remove support for Python 3.7 --- .github/workflows/tests.yml | 3 ++- CHANGES.rst | 1 + pyproject.toml | 1 - 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 45bd295..4fab7c6 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -8,9 +8,10 @@ jobs: tests: runs-on: ${{ matrix.os }} strategy: + fail-fast: false matrix: os: [ ubuntu-latest ] # , macos-latest, windows-latest ] - python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11", "3.12" ] + python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ] env: OS: ${{ matrix.os }} PYTHON: ${{ matrix.python-version }} diff --git a/CHANGES.rst b/CHANGES.rst index aa924e2..e8f4e58 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -7,6 +7,7 @@ in progress =========== - Add support for Python 3.12 +- Remove support for Python 3.7 2023-01-18 0.4.1 diff --git a/pyproject.toml b/pyproject.toml index 95308c1..9f072c6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -28,7 +28,6 @@ keywords = [ classifiers = [ "Programming Language :: Python", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10",