diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c125e87..02278d5 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2,7 +2,7 @@ variables: TUTOR_PLUGIN: notes TUTOR_IMAGES: notes TUTOR_PYPI_PACKAGE: tutor-notes - OPENEDX_RELEASE: nutmeg + OPENEDX_RELEASE: olive GITHUB_REPO: overhangio/tutor-notes include: diff --git a/README.rst b/README.rst index e7d1d36..92a4d13 100644 --- a/README.rst +++ b/README.rst @@ -1,9 +1,9 @@ Students notes plugin for `Tutor `_ =================================================================== -This is a plugin for `Tutor `_ to easily add the `Open edX note-taking app `_ to an Open edX platform. This app allows students to annotate portions of the courseware (see `the official documentation `_). +This is a plugin for `Tutor `_ to easily add the `Open edX note-taking app `_ to an Open edX platform. This app allows students to annotate portions of the courseware (see `the official documentation `_). -.. image:: https://edx.readthedocs.io/projects/open-edx-building-and-running-a-course/en/open-release-nutmeg.master/_images/SFD_SN_bodyexample.png +.. image:: https://edx.readthedocs.io/projects/open-edx-building-and-running-a-course/en/open-release-olive.master/_images/SFD_SN_bodyexample.png :alt: Notes in action Installation diff --git a/setup.py b/setup.py index 5dc86ea..4578644 100644 --- a/setup.py +++ b/setup.py @@ -31,7 +31,7 @@ packages=find_packages(exclude=["tests*"]), include_package_data=True, python_requires=">=3.7", - install_requires=["tutor>=14.0.0,<15.0.0"], + install_requires=["tutor>=15.0.0,<16.0.0"], entry_points={"tutor.plugin.v1": ["notes = tutornotes.plugin"]}, classifiers=[ "Development Status :: 5 - Production/Stable", diff --git a/tutornotes/__about__.py b/tutornotes/__about__.py index 4fcf9b8..d5793af 100644 --- a/tutornotes/__about__.py +++ b/tutornotes/__about__.py @@ -1 +1 @@ -__version__ = "14.0.1" +__version__ = "15.0.0" diff --git a/tutornotes/templates/notes/build/notes/Dockerfile b/tutornotes/templates/notes/build/notes/Dockerfile index a1a8681..c401f30 100644 --- a/tutornotes/templates/notes/build/notes/Dockerfile +++ b/tutornotes/templates/notes/build/notes/Dockerfile @@ -1,5 +1,4 @@ FROM docker.io/ubuntu:20.04 -MAINTAINER Overhang.io RUN apt update && \ apt upgrade -y && \ @@ -19,8 +18,8 @@ ENV PATH /app/venv/bin:${PATH} # https://pypi.org/project/setuptools/ # https://pypi.org/project/pip/ # https://pypi.org/project/wheel/ -RUN pip install setuptools==62.1.0 pip==22.0.4 wheel==0.37.1 -RUN pip3 install -r requirements/base.txt +RUN pip install setuptools==65.5.1 pip==22.3.1 wheel==0.38.4 +RUN pip install -r requirements/base.txt EXPOSE 8000 CMD gunicorn --workers=2 --name notes --bind=0.0.0.0:8000 --max-requests=1000 notesserver.wsgi:application