From a60c86400ccb7346cf9e92c2ef7d55df961d5820 Mon Sep 17 00:00:00 2001 From: Ian Thomas Date: Fri, 25 Oct 2024 12:14:10 +0100 Subject: [PATCH] Drop support for Python 3.8 (#1284) --- .github/workflows/ci.yml | 4 +--- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 233aabbd..c86e5cf4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,10 +22,8 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, windows-latest, macos-latest] - python-version: ["3.8", "3.12"] + python-version: ["3.9", "3.12"] include: - - os: windows-latest - python-version: "3.9" - os: ubuntu-latest python-version: "pypy-3.9" - os: macos-latest diff --git a/pyproject.toml b/pyproject.toml index aeaeef46..1e9e543c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,7 +18,7 @@ classifiers = [ "Programming Language :: Python", "Programming Language :: Python :: 3", ] -requires-python = ">=3.8" +requires-python = ">=3.9" dependencies = [ "debugpy>=1.8.1", "ipython>=7.23.1",