8000 Drop support for Python 3.8 · pyodide/sphinx-js@92305d3 · GitHub
[go: up one dir, main page]

Skip to content

Commit 92305d3

Browse files
committed
Drop support for Python 3.8
1 parent de0d238 commit 92305d3

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
strategy:
2020
matrix:
21-
python-version: ['3.8', '3.9', '3.10', '3.11']
21+
python-version: ['3.9', '3.10', '3.11']
2222
experimental: [false]
2323

2424
name: Python ${{ matrix.python-version}}

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,14 @@
2020
# https://github.com/pallets/jinja/issues/1585
2121
'markupsafe==2.0.1',
2222
],
23-
python_requires='>=3.8',
23+
python_requires='>=3.9',
2424
classifiers=[
2525
'Framework :: Sphinx :: Extension',
2626
'Intended Audience :: Developers',
2727
'Natural Language :: English',
2828
'Development Status :: 5 - Production/Stable',
2929
'License :: OSI Approved :: MIT License',
3030
"Programming Language :: Python :: 3 :: Only",
31-
"Programming Language :: Python :: 3.8",
3231
"Programming Language :: Python :: 3.9",
3332
"Programming Language :: Python :: 3.10",
3433
"Programming Language :: Python :: 3.11",

tox.ini

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
[tox]
22
envlist =
3-
py{38,39,310,311}-sphinx5
4-
py{38,39,310,311}-sphinx6
5-
py{38,39,310,311}-sphinx7
3+
py{39,310,311}-sphinx5
4+
py{39,310,311}-sphinx6
5+
py{39,310,311}-sphinx7
66

77
[gh-actions]
88
python =
9-
3.8: py38
109
3.9: py39
1110
3.10: py310
1211
3.11: py311

0 commit comments

Comments
 (0)
0