Skip to content

Commit 5342014

Browse files
Ajout vacances scolaires 2022-2023
1 parent a960516 commit 5342014

File tree

3 files changed

+404
-39
lines changed

3 files changed

+404
-39
lines changed

setup.py

+1-1
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.8.1",
8+
version="0.9.0",
99
description="Get school holiday dates for metropolitan France",
1010
author="Antoine Augusti",
1111
author_email="[email protected]",

tests/test_init.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,9 @@ def test_holidays_for_year(self):
6363
self.assertEquals(sorted(v.keys()), self.EXPECTED_KEYS)
6464

6565
with self.assertRaisesRegexp(
66-
UnsupportedYearException, "No data for year: 2023"
66+
UnsupportedYearException, "No data for year: 2024"
6767
):
68-
self.assertEquals({}, d.holidays_for_year(2023))
68+
self.assertEquals({}, d.holidays_for_year(2024))
6969

7070
def test_holiday_for_year_by_name(self):
7171
d = SchoolHolidayDates()

0 commit comments

Comments
 (0)