From 72b0d837d7a3b90813becdddd1201eecc7dc33c9 Mon Sep 17 00:00:00 2001 From: Christian Lawson-Perfect Date: Tue, 15 Aug 2023 09:45:28 +0100 Subject: [PATCH] update make_schema.py to use version 7.1 --- schema/index.html | 6 +++--- schema/make_schema.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/schema/index.html b/schema/index.html index 63569878d..6fbebc010 100644 --- a/schema/index.html +++ b/schema/index.html @@ -8,11 +8,11 @@ - Numbas exam schema v7.0 + Numbas exam schema v7.1
-

Numbas exam schema v7.0

+

Numbas exam schema v7.1

@@ -20,7 +20,7 @@

Numbas exam schema v7.0

The line for the current version should look like this:

// Numbas version: exam_results_page_options

The rest of the file should consist of a single JSON object, matching the following schema.

-

Download the schema in JSON-Schema format

+

Download the schema in JSON-Schema format

diff --git a/schema/make_schema.py b/schema/make_schema.py index b9313d3a5..ef6814b6c 100644 --- a/schema/make_schema.py +++ b/schema/make_schema.py @@ -1,7 +1,7 @@ import json import jinja2 -version = '7.0' +version = '7.1' with open(f'exam_schema.{version}.json') as f: schema = json.loads(f.read())