Skip to content

Commit 638ebb2

Browse files
committed
Increment version from 0.10.2 to 0.11.0
1 parent 089d94b commit 638ebb2

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "problem_bank_scripts"
3-
version = "0.10.2"
3+
version = "0.11.0"
44
description = "A package with useful functions to convert between different problem bank formats."
55
authors = ["Open Problem Bank Team"]
66
license = "MIT"

src/problem_bank_scripts/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
__version__ = "0.10.2"
1+
__version__ = "0.11.0"
22

33
from .problem_bank_scripts import *

src/problem_bank_scripts/problem_bank_scripts.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -902,9 +902,9 @@ def process_workspace(part_name, parsed_question, data_dict):
902902
html += f"""\n<pl-submission-panel>"""
903903

904904
if parsed_question["header"][part_name].get("gradingMethod", None) == "External":
905-
html += f"""\n<pl-external-grader-results></pl-external-grader-results>\n<pl-file-preview></pl-file-preview>"""
906-
907-
html += f"""\n<ul>\n\t|@ #feedback.results @| \n\t<li>|@ . @|</li>\n\t|@ /feedback.results @|\n</ul>\n</pl-submission-panel>"""
905+
html += f"""\n<pl-external-grader-results></pl-external-grader-results>\n<pl-file-preview></pl-file-preview>\n</pl-submission-panel>"""
906+
else:
907+
html += f"""\n<ul>\n\t|@ #feedback.results @| \n\t<li>|@ . @|</li>\n\t|@ /feedback.results @|\n</ul>\n</pl-submission-panel>"""
908908

909909

910910
return replace_tags(html)

tests/test_problem_bank_scripts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616

1717
def test_version():
18-
assert __version__ == "0.10.2"
18+
assert __version__ == "0.11.0"
1919

2020

2121
# TODO: excluding symbolic questions, needs to be fixed because of how sympy objects are handled

0 commit comments

Comments
 (0)