From 2b18675b7ec685ac5d500849a072b863c1e958f4 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 13 Apr 2026 14:12:17 +0000 Subject: [PATCH] drop Python 3.8 support Agent-Logs-Url: https://github.com/erseco/python-moodle/sessions/ee4c75e4-7fa6-4ebb-8c6b-62d123b9ed9d Co-authored-by: erseco <1876752+erseco@users.noreply.github.com> --- .github/workflows/ci.yml | 4 ++-- pyproject.toml | 3 +-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ca038c9..ad78dca 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,7 +36,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13'] + python-version: ['3.9', '3.10', '3.11', '3.12', '3.13'] steps: - name: Checkout code @@ -63,7 +63,7 @@ jobs: fail-fast: false matrix: include: - - python-version: '3.8' + - python-version: '3.9' moodle-image: erseco/alpine-moodle:v4.5.5 moodle-label: Moodle 4.5.5 moodle-cache-key: moodle-4-5-5 diff --git a/pyproject.toml b/pyproject.toml index c4d8a8b..04fa7c7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ dynamic = ["version"] description = "Python CLI and library to automate Moodle via web sessions, CAS/SSO, course management and SCORM uploads" readme = "README.md" authors = [{ name = "Ernesto Serrano", email = "info@ernesto.es" }] -requires-python = ">=3.8" +requires-python = ">=3.9" keywords = ["moodle", "lms", "cli", "automation", "scorm", "cas", "sso", "education", "elearning", "web-scraping"] classifiers = [ "Development Status :: 4 - Beta", @@ -17,7 +17,6 @@ classifiers = [ "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3", "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",