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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -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]
Expand All @@ -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",
Expand All @@ -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",
Expand Down
Loading