Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest ] # FIXME add other platforms when much quicker macOS-latest, windows-latest]
python-version: ["3.8", "3.9", "3.10", "3.11"] # FIXME Test on later python versions, "3.12", "3.13"]
python-version: ["3.9", "3.10", "3.11"] # FIXME Test on later python versions, "3.12", "3.13"]
multi-platform:
- ${{ github.ref == 'refs/heads/main' || github.event_name == 'workflow_dispatch' }}
# include:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
# location for development dependencies.
run: |
python -m pip install -r dev-requirements.txt
python -m pip install "setuptools<81"
python -m pip install setuptools
python -m pip list
- name: Generate SPDX documents
run: |
Expand Down
1 change: 1 addition & 0 deletions news/20260402160519.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Dependency upgrade: towncrier-24.8.0
1 change: 1 addition & 0 deletions news/20260402171631.major
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
:boom: Remove support for `python 3.8`
1 change: 1 addition & 0 deletions news/20260402171650.removal
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Remove support for `python 3.8`
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"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 All @@ -56,7 +55,7 @@
# spdx-tools imports pkg_resources from setuptools at runtime.
"setuptools",
"gitpython",
"towncrier==22.12.0",
"towncrier==25.8.0",
"pyautoversion~=1.2.0",
# FIXME change when https://github.com/pdoc3/pdoc/issues/299 is fixed
"pdoc3==0.10.0",
Expand All @@ -81,7 +80,7 @@
long_description=long_description,
name=PROJECT_SLUG,
packages=[SOURCE_DIR],
python_requires=">=3.8,<4",
python_requires=">=3.9,<4",
url=f"https://github.com/ARMmbed/{PROJECT_SLUG}",
version=__version__,
)
Loading