Skip to content

Commit d9902d8

Browse files
committed
Remove support for python 3.8
1 parent 1c353f1 commit d9902d8

4 files changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ jobs:
167167
fail-fast: false
168168
matrix:
169169
os: [ubuntu-latest ] # FIXME add other platforms when much quicker macOS-latest, windows-latest]
170-
python-version: ["3.8", "3.9", "3.10", "3.11"] # FIXME Test on later python versions, "3.12", "3.13"]
170+
python-version: ["3.9", "3.10", "3.11"] # FIXME Test on later python versions, "3.12", "3.13"]
171171
multi-platform:
172172
- ${{ github.ref == 'refs/heads/main' || github.event_name == 'workflow_dispatch' }}
173173
# include:

news/20260402171631.major

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
:boom: Remove support for `python 3.8`

news/20260402171650.removal

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Remove support for `python 3.8`

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@
3030
"License :: OSI Approved :: Apache Software License",
3131
"Programming Language :: Python",
3232
"Programming Language :: Python :: 3 :: Only",
33-
"Programming Language :: Python :: 3.8",
3433
"Programming Language :: Python :: 3.9",
3534
"Programming Language :: Python :: 3.10",
3635
"Programming Language :: Python :: 3.11",
@@ -81,7 +80,7 @@
8180
long_description=long_description,
8281
name=PROJECT_SLUG,
8382
packages=[SOURCE_DIR],
84-
python_requires=">=3.8,<4",
83+
python_requires=">=3.9,<4",
8584
url=f"https://github.com/ARMmbed/{PROJECT_SLUG}",
8685
version=__version__,
8786
)

0 commit comments

Comments
 (0)