7
0
mirror of https://github.com/ChristianLight/tutor.git synced 2024-06-08 00:50:47 +00:00

Fix "FileError" on Scorm package upload in Scorm XBlock

See https://github.com/overhangio/openedx-scorm-xblock/issues/3
This commit is contained in:
Régis Behmo 2020-08-15 17:24:11 +02:00
parent 62d7fd00b9
commit a161dbf843
2 changed files with 2 additions and 1 deletions

View File

@ -4,6 +4,7 @@ Note: Breaking changes between versions are indicated by "💥".
## Unreleased
- [Bugfix] Fix "FileError" on Scorm package upload in Scorm XBlock
- 💥[Improvement] Serve openedx static assets with [whitenoise](http://whitenoise.evans.io/en/stable/) instead of nginx. This removes the `k8s-deployments-nginx-init-containers` patch. Plugins are encouraged to implement static asset serving with Whitenoise as well.
- [Bugfix] Fix dependency on mysql service when mysql is not activated
- [Improvement] Improve openedx Docker image build time and size with multi-stage build

View File

@ -82,7 +82,7 @@ RUN pip install -r ./requirements/edx/base.txt
RUN pip install https://github.com/overhangio/edx-ora2/archive/overhangio/boto2to3.zip
# Install scorm xblock
RUN pip install "openedx-scorm-xblock<11.0.0,>=10.0.0"
RUN pip install "openedx-scorm-xblock<11.0.0,>=10.0.1"
# Install whitenoise, for serving static assets
RUN pip install "whitenoise==5.1.0"