feat: updated to work with tutor olive

This commit is contained in:
Moisés Arévalo 2022-11-11 11:25:29 -05:00 committed by Régis Behmo
parent 899850e56f
commit 7f66739ccd
4 changed files with 4 additions and 5 deletions

View File

@ -2,7 +2,7 @@ variables:
TUTOR_PLUGIN: xqueue
TUTOR_IMAGES: xqueue
TUTOR_PYPI_PACKAGE: tutor-xqueue
OPENEDX_RELEASE: nutmeg
OPENEDX_RELEASE: olive
GITHUB_REPO: overhangio/tutor-xqueue
include:

View File

@ -32,7 +32,7 @@ setup(
packages=find_packages(exclude=["tests*"]),
include_package_data=True,
python_requires=">=3.7",
install_requires=["tutor>=14.0.0,<15.0.0", "requests"],
install_requires=["tutor>=15.0.0,<16.0.0", "requests"],
entry_points={"tutor.plugin.v1": ["xqueue = tutorxqueue.plugin"]},
classifiers=[
"Development Status :: 3 - Alpha",

View File

@ -1 +1 @@
__version__ = "14.0.0"
__version__ = "15.0.0"

View File

@ -1,5 +1,4 @@
FROM docker.io/ubuntu:20.04
MAINTAINER Overhang.io <contact@overhang.io>
RUN apt update && \
apt upgrade -y && \
@ -17,7 +16,7 @@ RUN python -m venv /openedx/venv
ENV PATH /openedx/venv/bin:${PATH}
RUN pip install --upgrade pip setuptools
RUN pip install -r requirements.txt
RUN pip install uwsgi==2.0.20
RUN pip install uwsgi==2.0.21
RUN mkdir /openedx/data /openedx/data/media