Skip to content

Commit 48680fb

Browse files
remove escience academy from checks and change carpentry type to unimplemented value specific to esmvaltool, change life cycle to alpha
1 parent c1a6edd commit 48680fb

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

_config.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,21 @@
22
# Values for this lesson.
33
#------------------------------------------------------------
44

5-
# Which carpentry is this ("swc", "dc", "lc", "cp" or "ea")?
5+
# Which carpentry is this ("swc", "dc", "lc", "cp")?
66
# swc: Software Carpentry
77
# dc: Data Carpentry
88
# lc: Library Carpentry
99
# cp: Carpentries (to use for instructor traning for instance)
10-
# ea: eScience Academy
11-
carpentry: "ea"
10+
# ea: eScience Academy (not implemented)
11+
# et: ESMValTool Tutorial (to be implemented)
12+
carpentry: "et"
1213

1314
# Overall title for pages.
1415
title: "ESMValTool Tutorial"
1516

1617
# Life cycle stage of the lesson
1718
# possible values: "pre-alpha", "alpha", "beta", "stable"
18-
life_cycle: "beta"
19+
life_cycle: "alpha"
1920

2021
#------------------------------------------------------------
2122
# Generic settings (should not need to change).

bin/lesson_check.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ def check_config(reporter, source_dir):
177177
reporter.check_field(config_file, 'configuration',
178178
config, 'kind', 'lesson')
179179
reporter.check_field(config_file, 'configuration',
180-
config, 'carpentry', ('swc', 'dc', 'lc', 'cp', 'ea'))
180+
config, 'carpentry', ('swc', 'dc', 'lc', 'cp'))
181181
reporter.check_field(config_file, 'configuration', config, 'title')
182182
reporter.check_field(config_file, 'configuration', config, 'email')
183183

bin/workshop_check.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ def check_config(reporter, filename):
388388
kind)
389389

390390
carpentry = config.get('carpentry', None)
391-
reporter.check(carpentry in ('swc', 'dc', 'lc', 'cp', 'ea'),
391+
reporter.check(carpentry in ('swc', 'dc', 'lc', 'cp'),
392392
filename,
393393
'Missing or unknown carpentry: {0}',
394394
carpentry)

0 commit comments

Comments
 (0)