Skip to content

Commit

Permalink
Ajout vacances scolaires 2022-2023
Browse files Browse the repository at this point in the history
  • Loading branch information
AntoineAugusti committed Dec 11, 2021
1 parent a960516 commit 5342014
Show file tree
Hide file tree
Showing 3 changed files with 404 additions and 39 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
name="vacances_scolaires_france",
license="MIT",
packages=["vacances_scolaires_france"],
version="0.8.1",
version="0.9.0",
description="Get school holiday dates for metropolitan France",
author="Antoine Augusti",
author_email="hi@antoine-augusti.fr",
Expand Down
4 changes: 2 additions & 2 deletions tests/test_init.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@ def test_holidays_for_year(self):
self.assertEquals(sorted(v.keys()), self.EXPECTED_KEYS)

with self.assertRaisesRegexp(
UnsupportedYearException, "No data for year: 2023"
UnsupportedYearException, "No data for year: 2024"
):
self.assertEquals({}, d.holidays_for_year(2023))
self.assertEquals({}, d.holidays_for_year(2024))

def test_holiday_for_year_by_name(self):
d = SchoolHolidayDates()
Expand Down
Loading

0 comments on commit 5342014

Please sign in to comment.