From c0984aab8629106ba2640a52ae4f3e32e7d1c07e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Apr 2026 04:26:33 +0000 Subject: [PATCH 1/2] Update setuptools requirement from >=61 to >=82.0.1 Updates the requirements on [setuptools](https://github.com/pypa/setuptools) to permit the latest version. - [Release notes](https://github.com/pypa/setuptools/releases) - [Changelog](https://github.com/pypa/setuptools/blob/main/NEWS.rst) - [Commits](https://github.com/pypa/setuptools/compare/v61.0.0...v82.0.1) --- updated-dependencies: - dependency-name: setuptools dependency-version: 82.0.1 dependency-type: direct:development ... Signed-off-by: dependabot[bot] --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 438ff6d..c4d8a8b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [build-system] -requires = ["setuptools>=61", "wheel", "setuptools_scm"] +requires = ["setuptools>=82.0.1", "wheel", "setuptools_scm"] build-backend = "setuptools.build_meta" [project] 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 2/2] 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",