Skip to content

Commit

Permalink
feat: Drop support for Python 3.8 (#1183)
Browse files Browse the repository at this point in the history
Fixes #1146
  • Loading branch information
kesara authored Nov 13, 2024
1 parent b5381ac commit 7b8ed97
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:

strategy:
matrix:
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
Expand Down Expand Up @@ -102,7 +102,7 @@ jobs:

strategy:
matrix:
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
Expand Down Expand Up @@ -163,7 +163,7 @@ jobs:

strategy:
matrix:
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
Expand Down
3 changes: 0 additions & 3 deletions docker/dev.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,6 @@ RUN apt-get update --fix-missing && \
git \
vim \
less \
python3.8 \
python3.8-dev \
python3.8-distutils \
python3.9 \
python3.9-dev \
python3.9-distutils \
Expand Down
1 change: 0 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,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
Expand Down
3 changes: 1 addition & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,11 @@
# and then run "tox" from this directory.

[tox]
envlist = py{37,38,39,310,311}-{linux,macos,windows}
envlist = py{39,310,311,312,313}-{linux,macos,windows}
isolated_build = True

[gh-actions]
python =
3.8: py38
3.9: py39
3.10: py310
3.11: py311
Expand Down

0 comments on commit 7b8ed97

Please sign in to comment.