feat: updated to work with tutor olive
This commit is contained in:
parent
899850e56f
commit
7f66739ccd
@ -2,7 +2,7 @@ variables:
|
|||||||
TUTOR_PLUGIN: xqueue
|
TUTOR_PLUGIN: xqueue
|
||||||
TUTOR_IMAGES: xqueue
|
TUTOR_IMAGES: xqueue
|
||||||
TUTOR_PYPI_PACKAGE: tutor-xqueue
|
TUTOR_PYPI_PACKAGE: tutor-xqueue
|
||||||
OPENEDX_RELEASE: nutmeg
|
OPENEDX_RELEASE: olive
|
||||||
GITHUB_REPO: overhangio/tutor-xqueue
|
GITHUB_REPO: overhangio/tutor-xqueue
|
||||||
|
|
||||||
include:
|
include:
|
||||||
|
|||||||
2
setup.py
2
setup.py
@ -32,7 +32,7 @@ setup(
|
|||||||
packages=find_packages(exclude=["tests*"]),
|
packages=find_packages(exclude=["tests*"]),
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
python_requires=">=3.7",
|
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"]},
|
entry_points={"tutor.plugin.v1": ["xqueue = tutorxqueue.plugin"]},
|
||||||
classifiers=[
|
classifiers=[
|
||||||
"Development Status :: 3 - Alpha",
|
"Development Status :: 3 - Alpha",
|
||||||
|
|||||||
@ -1 +1 @@
|
|||||||
__version__ = "14.0.0"
|
__version__ = "15.0.0"
|
||||||
|
|||||||
@ -1,5 +1,4 @@
|
|||||||
FROM docker.io/ubuntu:20.04
|
FROM docker.io/ubuntu:20.04
|
||||||
MAINTAINER Overhang.io <contact@overhang.io>
|
|
||||||
|
|
||||||
RUN apt update && \
|
RUN apt update && \
|
||||||
apt upgrade -y && \
|
apt upgrade -y && \
|
||||||
@ -17,7 +16,7 @@ RUN python -m venv /openedx/venv
|
|||||||
ENV PATH /openedx/venv/bin:${PATH}
|
ENV PATH /openedx/venv/bin:${PATH}
|
||||||
RUN pip install --upgrade pip setuptools
|
RUN pip install --upgrade pip setuptools
|
||||||
RUN pip install -r requirements.txt
|
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
|
RUN mkdir /openedx/data /openedx/data/media
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user