From f46cdecc862d831af2fea0a85e9a5222a3053231 Mon Sep 17 00:00:00 2001 From: Henrik Skupin Date: Mon, 4 Nov 2024 22:27:39 +0100 Subject: [PATCH] Remove support for Python 3.8. --- .github/workflows/test.yml | 11 +---------- setup.py | 2 +- 2 files changed, 2 insertions(+), 11 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0b88fad0..054e6a14 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -26,9 +26,6 @@ jobs: - os: ubuntu-latest python: "3.9" toxenv: py39 - - os: ubuntu-latest - python: "3.8" - toxenv: py38 # windows - os: windows-latest python: "3.12" @@ -42,9 +39,6 @@ jobs: - os: windows-latest python: "3.9" toxenv: py39 - - os: windows-latest - python: "3.8" - toxenv: py38 # macos - os: macos-latest python: "3.12" @@ -58,12 +52,9 @@ jobs: - os: macos-latest python: "3.9" toxenv: py39 - - os: macos-latest - python: "3.8" - toxenv: py38 # misc - os: ubuntu-latest - python: "3.11" + python: "3.12" toxenv: pylama steps: diff --git a/setup.py b/setup.py index 94e29eaf..e7a1018d 100755 --- a/setup.py +++ b/setup.py @@ -40,11 +40,11 @@ def get_version(): "Topic :: System :: Software Distribution", "Topic :: Utilities", "Programming Language :: Python :: 3 :: Only", - "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", ], keywords='mozilla', author='Mozilla Automation and Testing Team',