From bb883fc551c4070f13da4bffa973855a347964ae Mon Sep 17 00:00:00 2001 From: Kesara Rathnayake Date: Tue, 19 Nov 2024 09:02:32 +1300 Subject: [PATCH] feat: Drop support for Python 3.8 (#67) Fixes #59 --- .github/workflows/checks.yml | 2 +- setup.cfg | 1 - tox.ini | 3 +-- 3 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 352e023..23e2cdc 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -38,7 +38,7 @@ jobs: strategy: matrix: platform: [ubuntu-latest, macos-latest, windows-latest] - python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13'] + python-version: ['3.9', '3.10', '3.11', '3.12', '3.13'] steps: - name: Checkout repository diff --git a/setup.cfg b/setup.cfg index 74a9c44..59f6395 100644 --- a/setup.cfg +++ b/setup.cfg @@ -14,7 +14,6 @@ classifiers = Topic :: Text Processing Topic :: Text Processing :: Markup :: XML License :: OSI Approved :: BSD License - Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9 Programming Language :: Python :: 3.10 Programming Language :: Python :: 3.11 diff --git a/tox.ini b/tox.ini index 18aae13..d8cf15c 100644 --- a/tox.ini +++ b/tox.ini @@ -4,11 +4,10 @@ # and then run "tox" from this directory. [tox] -envlist = py{38,39,310,311,313}-{linux,macos,windows} +envlist = py{39,310,311,313}-{linux,macos,windows} [gh-actions] python = - 3.8: py38 3.9: py39 3.10: py310 3.11: py311