Skip to content

Commit 2c7946c

Browse files
drop support for Python 3.8
1 parent a7a1e19 commit 2c7946c

3 files changed

Lines changed: 3 additions & 5 deletions

File tree

.github/workflows/cis.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,6 @@ jobs:
4242
fail-fast: false
4343
matrix:
4444
include:
45-
- python-version: "3.8"
46-
toxenv: py38
4745
- python-version: "3.9"
4846
toxenv: py39
4947
- python-version: "3.10"

.github/workflows/frameworks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
strategy:
2222
fail-fast: false
2323
matrix:
24-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
24+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14-dev"]
2525

2626
steps:
2727
- uses: actions/checkout@v4

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "bytecode"
33
description = "Python module to generate and modify bytecode"
44
readme = "README.rst"
5-
requires-python = ">=3.8"
5+
requires-python = ">=3.9"
66
license = { file = "COPYING" }
77
authors = [{ name = "Victor Stinner", email = "victor.stinner@gmail.com" }]
88
maintainers = [{ name = "Matthieu C. Dartiailh", email = "m.dartiailh@gmail.com" }]
@@ -13,12 +13,12 @@
1313
"Natural Language :: English",
1414
"Operating System :: OS Independent",
1515
"Programming Language :: Python :: 3",
16-
"Programming Language :: Python :: 3.8",
1716
"Programming Language :: Python :: 3.9",
1817
"Programming Language :: Python :: 3.10",
1918
"Programming Language :: Python :: 3.11",
2019
"Programming Language :: Python :: 3.12",
2120
"Programming Language :: Python :: 3.13",
21+
"Programming Language :: Python :: 3.14",
2222
"Topic :: Software Development :: Libraries :: Python Modules",
2323
]
2424
dependencies = ["typing_extensions;python_version<'3.10'"]

0 commit comments

Comments
 (0)