Skip to content
This repository has been archived by the owner on Jan 8, 2025. It is now read-only.

Commit

Permalink
Drop support for Python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
willkg committed Dec 23, 2024
1 parent 250a7a3 commit 2e05d9d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
python-version: ['3.9', '3.10', '3.11']
experimental: [false]

name: Python ${{ matrix.python-version}}
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,14 @@
# https://github.com/pallets/jinja/issues/1585
'markupsafe==2.0.1',
],
python_requires='>=3.8',
python_requires='>=3.9',
classifiers=[
'Framework :: Sphinx :: Extension',
'Intended Audience :: Developers',
'Natural Language :: English',
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
"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",
Expand Down
7 changes: 3 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
[tox]
envlist =
py{38,39,310,311}-sphinx5
py{38,39,310,311}-sphinx6
py{38,39,310,311}-sphinx7
py{39,310,311}-sphinx5
py{39,310,311}-sphinx6
py{39,310,311}-sphinx7

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

0 comments on commit 2e05d9d

Please sign in to comment.