From e1a27ac12b6e7084b0c7c99db43e06760e79d508 Mon Sep 17 00:00:00 2001 From: Kaustav Banerjee Date: Fri, 14 Jun 2024 16:51:47 +0530 Subject: [PATCH] chore: bump supported tutor versions to work on tutor 18 for redwood Update the install_requires list to include support for Tutor 18 (and Open edX Redwood), 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 dbbcee6..662e3a6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## Unreleased + +* [Enhancement] Support Tutor 18 and Open edX Redwood. + ## Version 1.4.0 (2024-04-05) * [Enhancement] Support Python 3.12. diff --git a/README.md b/README.md index 793e4c5..d01e53f 100644 --- a/README.md +++ b/README.md @@ -28,6 +28,7 @@ appropriate one: | Olive | `>=15.0, <16` | `main` | 1.1.x | | Palm | `>=16.0, <17` | `main` | 1.2.x | | Quince | `>=17.0, <18` | `main` | >=1.3.0 | +| Redwood | `>=18.0, <19` | `main` | >=1.4.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 45354ba..df1f738 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ packages=find_packages(exclude=["tests*"]), include_package_data=True, python_requires=">=3.8", - install_requires=["tutor <18, >=14.0.0"], + install_requires=["tutor <19, >=14.0.0"], setup_requires=["setuptools-scm"], entry_points={"tutor.plugin.v1": ["s3 = tutors3.plugin"]}, classifiers=[