chore: update tutor version constraints to support v22 verawood - #76
Conversation
The `tutor>=19.0.0,<22.0.0` pin excludes Tutor v22, so the ltistore plugin cannot be installed alongside Verawood or master. Follows the same shape as the v21 bump in 3adf3ed. Verified against tutor==22.0.2: the plugin installs, loads and enables, its LTISTORE_PIP_INSTALL config default resolves, its ENV_PATCHES patch reaches the rendered openedx Dockerfile, and its CLI_DO_INIT_TASKS init task is registered for lms. None of the hooks it uses changed in v22. Runtime verification of the LTI store itself against a running Verawood deployment is still outstanding. Refs: openedx#74 Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
|
Thanks for the pull request, @taimoor-ahmed-1! This repository is currently maintained by Once you've gone through the following steps feel free to tag them in a comment and let them know that your changes are ready for engineering review. 🔘 Get product approvalIf you haven't already, check this list to see if your contribution needs to go through the product review process.
🔘 Provide contextTo help your reviewers and other members of the community understand the purpose and larger context of your changes, feel free to add as much of the following information to the PR description as you can:
🔘 Get a green buildIf one or more checks are failing, continue working on your changes until this is no longer the case and your build turns green. DetailsWhere can I find more information?If you'd like to get more details on all aspects of the review process for open source pull requests (OSPRs), check out the following resources: When can I expect my changes to be merged?Our goal is to get community contributions seen and reviewed as efficiently as possible. However, the amount of time that it takes to review and merge a PR can vary significantly based on factors such as:
💡 As a result it may take up to several weeks or months to complete a review and merge your PR. |
Description
tutor-contrib-ltistorepinstutor>=19.0.0,<22.0.0, which excludes Tutor v22 and so blocks installing the plugin alongside Verawood or master. This widens the pin to<23.0.0in bothdependenciesand thedevextra, following the same shape as the v21 bump in 3adf3ed.Fixes
Refs #74
Verification
Installed the plugin against
tutor==22.0.2in a clean venv and confirmed every hook it uses still takes effect:pip install tutor==22.0.2+pip install -e plugins/tutor-contrib-ltistoreresolves cleanly.tutor plugins listshowsltistore installed 19.0.0;tutor plugins enable ltistoresucceeds and the environment renders.CONFIG_DEFAULTS—tutor config printvalue LTISTORE_PIP_INSTALLreturnsopenedx-ltistore.ENV_PATCHES— the renderedenv/build/openedx/Dockerfilecontainspip install openedx-ltistore.CLI_DO_INIT_TASKS— the lms init task is registered, with its waffle-flag andlti_storemigration steps intact.None of the APIs the plugin uses (
hooks.Filters.CONFIG_DEFAULTS,ENV_PATCHES,CLI_DO_INIT_TASKS) changed in v22.Not covered
Issue #74 also asks for the LTI store to be tested with Verawood. This PR only establishes that the plugin is installable and wires itself up correctly under Tutor v22 — it does not verify the runtime behaviour of
openedx-ltistoreagainst a running Verawood deployment. Happy to hold this until someone can confirm that, if you would rather the pin move only after a full runtime check.tutor-contrib-paragoncarries the same<22.0.0pin (plustutor-mfe) and was bumped together with ltistore last time. I have left it alone here to keep this scoped to #74 — say the word and I will add it.🤖 Generated with Claude Code