From 4f71720916fde950bb479c8b3e39aa76ae6a74a6 Mon Sep 17 00:00:00 2001 From: Barret Schloerke Date: Tue, 1 Oct 2024 15:59:11 -0400 Subject: [PATCH] chore: Drop testing of python 3.8 (incomplete) (#1712) --- .github/workflows/pytest.yaml | 6 +++--- pyproject.toml | 3 +-- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/pytest.yaml b/.github/workflows/pytest.yaml index 6775e2f21..31427fe71 100644 --- a/.github/workflows/pytest.yaml +++ b/.github/workflows/pytest.yaml @@ -17,7 +17,7 @@ jobs: strategy: matrix: # "3.10" must be a string; otherwise it is interpreted as 3.1. - python-version: ["3.12", "3.11", "3.10", "3.9", "3.8"] + python-version: ["3.12", "3.11", "3.10", "3.9"] os: [ubuntu-latest, windows-latest, macOS-latest] exclude: - python-version: ${{ github.event.pull_request.draft && '3.11' }} @@ -108,7 +108,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.12", "3.11", "3.10", "3.9", "3.8"] + python-version: ["3.12", "3.11", "3.10", "3.9"] browser: ["chromium", "firefox", "webkit"] exclude: - python-version: ${{ github.event.pull_request.draft && '3.11' }} @@ -158,7 +158,7 @@ jobs: runs-on: ubuntu-20.04 strategy: matrix: - python-version: ["3.12", "3.11", "3.10", "3.9", "3.8"] + python-version: ["3.12", "3.11", "3.10", "3.9"] browser: ["chromium", "firefox", "webkit"] exclude: - python-version: ${{ github.event.pull_request.draft && '3.11' }} diff --git a/pyproject.toml b/pyproject.toml index 079839741..814c01237 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,14 +15,13 @@ dynamic = ["version"] authors = [{ name = "Winston Chang", email = "winston@posit.co" }] description = "A web development framework for Python." readme = "README.md" -requires-python = ">=3.8" +requires-python = ">=3.9" license = { text = "MIT" } classifiers = [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Natural Language :: English", - "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11",