Skip to content

Commit

Permalink
Ajout vacances scolaires 2021-2022
Browse files Browse the repository at this point in the history
  • Loading branch information
AntoineAugusti committed Oct 14, 2020
1 parent 95603f7 commit d745a3f
Show file tree
Hide file tree
Showing 3 changed files with 405 additions and 40 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.7.1",
version="0.8.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: 2022"
UnsupportedYearException, "No data for year: 2023"
):
self.assertEquals({}, d.holidays_for_year(2022))
self.assertEquals({}, d.holidays_for_year(2023))

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

0 comments on commit d745a3f

Please sign in to comment.