From bb8a6539bc8de68a75bd673db7bc4878c45d7fa2 Mon Sep 17 00:00:00 2001 From: Antoine Van Elstraete Date: Tue, 8 Sep 2026 20:23:35 +0200 Subject: [PATCH] docs: ajouter le fichier de vacances scolaires Bordeaux (zone A, 2026-2027) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Crée data/school_holidays.json avec les dates officielles de l'académie de Bordeaux (zone A) pour l'année scolaire 2026-2027 : Toussaint, Noël, Hiver, Printemps et Été. Ce fichier résout l'erreur au démarrage du pipeline quand SCHOOL_HOLIDAYS_PATH pointe vers un fichier inexistant. Wiki : page GuideAgendaVacancesScolaires créée et liée dans le sidebar. --- data/school_holidays.json | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 data/school_holidays.json diff --git a/data/school_holidays.json b/data/school_holidays.json new file mode 100644 index 0000000..e353d0c --- /dev/null +++ b/data/school_holidays.json @@ -0,0 +1,31 @@ +{ + "zone": "A", + "school_year": "2026-2027", + "periods": [ + { + "start_date": "2026-10-17", + "end_date": "2026-11-02", + "label": "Toussaint" + }, + { + "start_date": "2026-12-19", + "end_date": "2027-01-04", + "label": "Noël" + }, + { + "start_date": "2027-02-13", + "end_date": "2027-03-01", + "label": "Hiver" + }, + { + "start_date": "2027-04-10", + "end_date": "2027-04-26", + "label": "Printemps" + }, + { + "start_date": "2027-07-03", + "end_date": "2027-09-01", + "label": "Été" + } + ] +}