Skip to content
Merged
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
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ env:
python_cache_windows_path: ~\AppData\Local\pip\Cache
python_cache_ubuntu_path: ~/.cache/pip
pipenv_version: 2024.4.0
python_version: '3.11'
python_version: '3.14'

jobs:
# Check that a news file has been added to this branch when a PR is created
Expand Down Expand Up @@ -208,7 +208,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.10", "3.11", "3.12", "3.13", "3.14"]
multi-platform:
- ${{ github.ref == 'refs/heads/main' || github.event_name == 'workflow_dispatch' }}
# include:
Expand All @@ -222,7 +222,7 @@ jobs:
include:
- os: macOS-latest
multi-platform: false
python-version: 3.11
python-version: 3.14
# - os: windows-latest
# multi-platform: false
# python-version: 3.9
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: GitHub Release

env:
pipenv_version: 2024.4.0
python_version: '3.11'
python_version: '3.14'

on:
workflow_dispatch:
Expand Down
1 change: 1 addition & 0 deletions news/20260819123000.major
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
:gear: Drop Python 3.8 and 3.9 support, and update CI coverage to Python 3.10 through 3.14.
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,11 @@
"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",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Build Tools",
],
description="Continuous Delivery scripts to increase automation",
Expand Down Expand Up @@ -82,7 +83,7 @@
long_description=long_description,
name=PROJECT_SLUG,
packages=[SOURCE_DIR],
python_requires=">=3.8,<4",
python_requires=">=3.10,<4",
url=f"https://github.com/ARMmbed/{PROJECT_SLUG}",
version=__version__,
)
4 changes: 2 additions & 2 deletions tests/versioning/test_versioning.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ def test_calculate_version(self):
for release_type in CommitType.choices():
_, new_version, version_elements = calculate_version(CommitType.RELEASE, False, False)
self.assertIsNotNone(new_version)
self.assertNotEquals(new_version, "")
self.assertNotEqual(new_version, "")
self.assertIsNotNone(version_elements)
self.assertGreater(len(version_elements), 0)
_, new_version, version_elements = calculate_version(CommitType.RELEASE, True, False)
self.assertIsNotNone(new_version)
self.assertNotEquals(new_version, "")
self.assertNotEqual(new_version, "")
self.assertIsNotNone(version_elements)
self.assertGreater(len(version_elements), 0)

Expand Down
Loading