7
0
mirror of https://github.com/ChristianLight/tutor.git synced 2024-05-30 04:40:49 +00:00

fix: update problem with hint according newer python versions

This commit is contained in:
Maria Grimaldi 2022-06-24 09:17:44 -04:00 committed by Régis Behmo
parent b13d4da1b1
commit 4b8cf4ccc7
2 changed files with 4 additions and 0 deletions

View File

@ -17,6 +17,7 @@ Every user-facing change should have an entry in this changelog. Please respect
-->
## Unreleased
- [Fix] Update problem with hint template so it works with newer python versions. (by @mariajgrimaldi)
- [Feature] Add default PYTHONBREAKPOINT to openedx/Dockerfile (by @Carlos-Muniz)
- [Bugfix] Fix smtp server port in `cms.yml` which was causing email sending failures in the Studio. (by @regisb)

View File

@ -50,6 +50,9 @@ RUN git config --global user.email "tutor@overhang.io" \
# Fix broken "Pages" view in Studio
# https://github.com/openedx/edx-platform/pull/30550
RUN curl -fsSL https://github.com/open-craft/edx-platform/commit/3d54f284f82b61e693ad652d8d6e46a226fcb36d.patch | git am
# fix: add () to print statement so problem with hint template works in newer versions
# https://github.com/openedx/edx-platform/pull/30585
RUN curl -fsSL https://github.com/openedx/edx-platform/commit/468036b3085adbe77a2dbb4a1c3bd88ab831f7b0.patch | git am
{%- endif %}
{# Example: RUN curl -fsSL https://github.com/openedx/edx-platform/commit/<GITSHA1> | git am #}