Skip to content

Commit 7a6ac61

Browse files
Removed support for Python 3.8.
1 parent 8162454 commit 7a6ac61

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
fail-fast: false
1111
matrix:
12-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
12+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
1313
os: ['ubuntu-22.04', 'ubuntu-24.04', 'macos-14', 'macos-15', 'windows-2022', 'windows-2025']
1414

1515
runs-on: ${{ matrix.os }}

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ requires = [
1313
name = "edq-lms-toolkit"
1414
description = "A suite of CLI tools and Python library interfacing with Learning Management Systems (LMSs)."
1515
readme = "README.md"
16-
requires-python = ">=3.8"
16+
requires-python = ">=3.9"
1717
license = {file = "LICENSE"}
1818

1919
authors = [
@@ -24,7 +24,7 @@ keywords = ['education', 'lms', 'canvas', 'api']
2424
classifiers = [
2525
'Intended Audience :: Education',
2626
'License :: OSI Approved :: MIT License',
27-
'Programming Language :: Python :: 3.8',
27+
'Programming Language :: Python :: 3.9',
2828
]
2929

3030
dynamic = [

scripts/check_python_version.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ function main() {
1616

1717
cd "${ROOT_DIR}"
1818

19-
vermin --no-tips --no-parse-comments --target=3.8- --violations lms
19+
vermin --no-tips --no-parse-comments --target=3.9- --violations lms
2020
return $?
2121
}
2222

0 commit comments

Comments
 (0)