Skip to content

Commit 5a8f303

Browse files
authored
feat!: teak support (#68)
1 parent 97daadf commit 5a8f303

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def load_about():
4444
packages=find_packages(exclude=["tests*"]),
4545
include_package_data=True,
4646
python_requires=">=3.8",
47-
install_requires=["tutor>=19.0.0, <20"],
47+
install_requires=["tutor>=20.0.0,<21"],
4848
entry_points={"tutor.plugin.v1": ["codejail = tutorcodejail.plugin"]},
4949
classifiers=[
5050
"Development Status :: 3 - Alpha",

tutorcodejail/__about__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
"""Helps you keep your cool when creating dozens of open edX and eduNEXT environments."""
2-
__version__ = "19.1.1"
2+
__version__ = "20.0.0"

tutorcodejail/plugin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"MIN_REPLICAS": 1,
3434
"MAX_REPLICAS": 4,
3535
"AVG_CPU": 65,
36-
"SERVICE_VERSION": "release/sumac.2",
36+
"SERVICE_VERSION": "release/teak.1",
3737
"SERVICE_REPOSITORY": "https://github.com/edunext/codejailservice.git",
3838
},
3939
"overrides": {},

tutorcodejail/templates/codejail/build/codejail/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ ENV VIRTUAL_ENV=/sandbox/venv/
5555
WORKDIR /var/tmp
5656
RUN mkdir -p common/lib/
5757

58-
ADD $EDX_PLATFORM_REPOSITORY#$EDX_PLATFORM_VERSION:requirements/edx-sandbox/releases .
59-
RUN pip3 install -r sumac.txt
58+
ADD $EDX_PLATFORM_REPOSITORY#$EDX_PLATFORM_VERSION:requirements/edx-sandbox/ .
59+
RUN pip3 install -r releases/teak.txt
6060

6161
# Allows you to add extra pip requirements to your codejail sandbox.
6262
{% if CODEJAIL_EXTRA_PIP_REQUIREMENTS is defined %}

0 commit comments

Comments
 (0)