From 0c5ac0c4fa6b914a780b4d93d368fcd386a548b6 Mon Sep 17 00:00:00 2001 From: Kaustav Banerjee Date: Tue, 19 Nov 2024 15:58:39 +0530 Subject: [PATCH] chore: bump supported tutor versions to work on tutor 19 for sumac Update the install_requires list to include support for Tutor 19 (and Open edX Sumac), and update the README. --- CHANGELOG.md | 4 ++++ README.md | 1 + setup.py | 2 +- 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2830f45..a953d58 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## Unreleased + +* [Enhancement] Support Tutor 19 and Open edX Sumac. + ## Version 2.0.0 (2024-10-07) * [Chore] Drop support for Python 3.8. diff --git a/README.md b/README.md index 3df0db2..7f47511 100644 --- a/README.md +++ b/README.md @@ -29,6 +29,7 @@ appropriate one: | Palm | `>=16.0, <17` | `quince` | `>=1.2.0, <2` | | Quince | `>=17.0, <18` | `quince` | `>=1.3.0, <2` | | Redwood | `>=18.0, <19` | `main` | `>=2` | +| Sumac | `>=19.0, <20` | `main` | `>=2.1.0` | [^1]: For Open edX Maple and Tutor 13, you must run version 13.2.0 or later. That is because this plugin uses the Tutor v1 plugin API, diff --git a/setup.py b/setup.py index ada6635..d57d31c 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ packages=find_packages(exclude=["tests*"]), include_package_data=True, python_requires=">=3.9", - install_requires=["tutor <19, >=14.0.0"], + install_requires=["tutor <20, >=14.0.0"], setup_requires=["setuptools-scm"], entry_points={"tutor.plugin.v1": ["s3 = tutors3.plugin"]}, classifiers=[