8000 Drop support for Python 3.8 · python/mypy_extensions@bfdd9f3 · GitHub
[go: up one dir, main page]

Skip to content

Commit bfdd9f3

Browse files
committed
Drop support for Python 3.8
1 parent 1b46102 commit bfdd9f3

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

.github/workflows/test.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ jobs:
4646
fail-fast: false
4747
matrix:
4848
python: [
49-
"3.8",
5049
"3.9",
5150
"3.10",
5251
"3.11",

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,14 @@ classifiers = [
1717
"Intended Audience :: Developers",
1818
"License :: OSI Approved :: MIT License",
1919
"Programming Language :: Python :: 3",
20-
"Programming Language :: Python :: 3.8",
2120
"Programming Language :: Python :: 3.9",
2221
"Programming Language :: Python :: 3.10",
2322
"Programming Language :: Python :: 3.11",
2423
"Programming Language :: Python :: 3.12",
2524
"Programming Language :: Python :: 3.13",
2625
"Topic :: Software Development",
2726
]
28-
requires-python = ">=3.8"
27+
requires-python = ">=3.9"
2928

3029
[project.urls]
3130
Homepage = "https://github.com/python/mypy_extensions"

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
minversion = 4.4.4
33
skip_missing_interpreters = true
4-
envlist = py38, py39, py310, py311, py312, py313
4+
envlist = py39, py310, py311, py312, py313
55

66
[testenv]
77
description = run the test driver with {basepython}

0 commit comments

Comments
 (0)
0