Skip to content

Commit

Permalink
feat: add support for quince release DS-697 (#43)
Browse files Browse the repository at this point in the history
* feat: add support for quince release

* docs: update the readme and the changelog
  • Loading branch information
MaferMazu authored Nov 20, 2023
1 parent ec78ac6 commit f63dc2c
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 2 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,15 @@ Change Log
Unreleased
~~~~~~~~~~

[17.0.0] - 2023-11-20
~~~~~~~~~~~~~~~~~~~~~

Added
_____

* Allows you to add extra pip requirements to your codejail sandbox (#42)
* Add support form quince release (#43)

[16.0.0] - 2023-08-18
~~~~~~~~~~~~~~~~~~~~~

Expand Down
4 changes: 4 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ Finally, the platform can be run as usual:
Configuration
-------------

For some of these configurations to work correctly, the codejail image must be built again. Command to build codejail: ``tutor images build codejail``.

- ``CODEJAIL_APPARMOR_DOCKER_IMAGE``: (default: ``docker.io/ednxops/codejail_apparmor_loader:latest``)
- ``CODEJAIL_DOCKER_IMAGE``: (default: ``docker.io/ednxops/codejailservice:14.0.0``)
- ``CODEJAIL_ENFORCE_APPARMOR`` (default: ``True``)
Expand Down Expand Up @@ -67,6 +69,8 @@ Compatibility
+------------------+---------------+
| Palm | >= 16.x |
+------------------+---------------+
| Quince | >= 17.x |
+------------------+---------------+

**NOTE**: For the Open edx version of the Lilac release, the changes required for the Codejail service to interact with ``edx-platform`` are
not included in ``open-release/lilac.master``. In order to use the service with the changes, please review `this PR`_.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def load_about():
packages=find_packages(exclude=["tests*"]),
include_package_data=True,
python_requires=">=3.8",
install_requires=["tutor<17.0.0"],
install_requires=["tutor<18.0.0"],
entry_points={"tutor.plugin.v1": ["codejail = tutorcodejail.plugin"]},
classifiers=[
"Development Status :: 3 - Alpha",
Expand Down
2 changes: 1 addition & 1 deletion tutorcodejail/__about__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""Helps you keep your cool when creating dozens of open edX and eduNEXT environments."""
__version__ = "16.0.0"
__version__ = "17.0.0"

0 comments on commit f63dc2c

Please sign in to comment.