Skip to content

Commit 245ca9a

Browse files
Ajout année 2026-2027
1 parent 0c833ec commit 245ca9a

File tree

3 files changed

+398
-33
lines changed

3 files changed

+398
-33
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
name="vacances_scolaires_france",
66
license="MIT",
77
packages=["vacances_scolaires_france"],
8-
version="0.10.0",
8+
version="0.11.0",
99
description="Get school holiday dates for metropolitan France",
1010
author="Antoine Augusti",
1111
author_email="[email protected]",

tests/test_init.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ def test_holidays_for_year(self):
5858
for k, v in res.items():
5959
self.assertEqual(sorted(v.keys()), self.EXPECTED_KEYS)
6060

61-
with self.assertRaisesRegex(UnsupportedYearException, "No data for year: 2027"):
62-
self.assertEqual({}, d.holidays_for_year(2027))
61+
with self.assertRaisesRegex(UnsupportedYearException, "No data for year: 2028"):
62+
self.assertEqual({}, d.holidays_for_year(2028))
6363

6464
def test_holiday_for_year_by_name(self):
6565
d = SchoolHolidayDates()

0 commit comments

Comments
 (0)