Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Sri Lanka holidays #2228

Merged
merged 33 commits into from
Feb 1, 2025
Merged
Show file tree
Hide file tree
Changes from 32 commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
f3e000e
Added Sri Lanka holidays
Prateekshit73 Jan 14, 2025
89efe90
Merge branch 'dev' into add-sri_lanka
Prateekshit73 Jan 14, 2025
8b59449
Delete Makefile
Prateekshit73 Jan 14, 2025
eb8814c
Revert "Delete Makefile"
Prateekshit73 Jan 15, 2025
ff3acab
Adding static holidays and removing New Year; Reverting the make file
Prateekshit73 Jan 15, 2025
8c11815
Merge branch 'dev' into add-sri_lanka
Prateekshit73 Jan 16, 2025
a741a14
Updating the descriptions of *.po files and removing duplicate code.
Prateekshit73 Jan 16, 2025
89f0f40
Merge branch 'add-sri_lanka' of https://github.com/Prateekshit73/holi…
Prateekshit73 Jan 16, 2025
cf95fc3
Merge branch 'dev' into add-sri_lanka
Prateekshit73 Jan 17, 2025
175ee7e
Merge branch 'dev' into add-sri_lanka
Prateekshit73 Jan 21, 2025
b15a05d
Fix Makefile
KJhellico Jan 21, 2025
0659059
Merge branch 'dev' into add-sri_lanka
Prateekshit73 Jan 22, 2025
79e7eb4
Merge branch 'dev' into add-sri_lanka
arkid15r Jan 23, 2025
0d575ae
Merge branch 'dev' into add-sri_lanka
Prateekshit73 Jan 23, 2025
275a671
Implements SinhalaCalendarHolidays
PPsyrius Jan 24, 2025
75e79f6
Implements 2022 Sri Lankan Fuel Crisis Special Government Holidays
PPsyrius Jan 24, 2025
eb01eae
2020 Covid-19 Lockdowns and other Special Public Holidays
PPsyrius Jan 24, 2025
c025615
Standarize Sinhalese l10n
PPsyrius Jan 24, 2025
b4d99c3
Merge pull request #2 from PPsyrius/poya_calc
Prateekshit73 Jan 24, 2025
874f881
Merge branch 'dev' into add-sri_lanka
Prateekshit73 Jan 24, 2025
b70f314
Sonarcloud fixes
PPsyrius Jan 24, 2025
057cc2a
Merge branch 'dev' into add-sri_lanka
Prateekshit73 Jan 24, 2025
902622d
Merge pull request #3 from PPsyrius/lk_fixes
Prateekshit73 Jan 24, 2025
f55ddaa
Merge branch 'dev' into add-sri_lanka
Prateekshit73 Jan 26, 2025
7d502f7
Adding a test case for maha_sivarathri; Updating NAWAM_POYA_DATES as …
Prateekshit73 Jan 26, 2025
40c95d2
Updating start_year to 1971 from 2003
Prateekshit73 Jan 27, 2025
f584067
Updating start_year to 1972 from 1971
Prateekshit73 Jan 27, 2025
b9179f6
Merge branch 'dev' into add-sri_lanka
Prateekshit73 Jan 27, 2025
6b8d8fa
Merge branch 'dev' into add-sri_lanka
Prateekshit73 Jan 28, 2025
ac8ae7e
Merge branch 'dev' into add-sri_lanka
Prateekshit73 Jan 29, 2025
7a21731
Merge branch 'dev' into add-sri_lanka
Prateekshit73 Jan 30, 2025
1fbcaec
Merge branch 'dev' into add-sri_lanka
Prateekshit73 Jan 31, 2025
8b034f6
Update code
arkid15r Feb 1, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ Available Countries
.. _ISO 639-1 code: https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes
.. _ISO 639-2 code: https://en.wikipedia.org/wiki/List_of_ISO_639-2_codes

We currently support 156 country codes. The standard way to refer to a country
We currently support 157 country codes. The standard way to refer to a country
is by using its `ISO 3166-1 alpha-2 code`_, the same used for domain names, and
for a subdivision its `ISO 3166-2 code`_. Some countries have common or foreign
names or abbreviations as aliases for their subdivisions. These are defined in
Expand Down Expand Up @@ -845,6 +845,11 @@ All other default values are highlighted with bold:
- Autonomous communities: AN, AR, AS, CB, CE, CL, CM, CN, CT, EX, GA, IB, MC, MD, ML, NC, PV, RI, VC
- en_US, **es**, uk
-
* - Sri Lanka
- LK
-
- en_US, **si_LK**, ta_LK
- BANK, GOVERNMENT, WORKDAY
* - Sweden
- SE
-
Expand Down
1 change: 1 addition & 0 deletions holidays/calendars/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,5 @@
from holidays.calendars.julian import JULIAN_CALENDAR
from holidays.calendars.julian_revised import JULIAN_REVISED_CALENDAR
from holidays.calendars.persian import _Persian
from holidays.calendars.sinhala import _SinhalaLunar, _CustomSinhalaHolidays
from holidays.calendars.thai import _ThaiLunisolar, KHMER_CALENDAR, THAI_CALENDAR
Loading