Skip to content
Draft
Show file tree
Hide file tree
Changes from 25 commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
651c918
Update EID_AL_FITR confirmed year to 2026
akshiDhi May 30, 2026
8550906
Update EID_AL_FITR confirmed year to 2026
akshiDhi May 30, 2026
dbe49a3
Update EID_AL_FITR confirmed year to 2026
akshiDhi May 30, 2026
cacf5a0
Update EID_AL_Adha confirmed year to 2026
akshiDhi May 30, 2026
8d64af1
Philippines: add missing MAR import
akshiDhi May 30, 2026
29c6578
Philippines: fix Proclamation 1264 reference URL
akshiDhi May 30, 2026
e8af34e
Add my name to contributors
akshiDhi May 30, 2026
8ab8b24
Indonesia: remove redundant EID_AL_ADHA dates matching default
akshiDhi May 30, 2026
3723791
Philippines: remove redundant EID_AL_ADHA dates matching default
akshiDhi May 30, 2026
cdc2bdc
Remove MAR from imported Gregorian months in Philippines
akshiDhi May 30, 2026
01ffee1
Indonesia: update confirmed years to 2026 for Islamic holidays
akshiDhi May 30, 2026
161763a
Philippines: remove redundant EID_AL_FITR 2026 date matching default
akshiDhi May 30, 2026
5209112
Update holidays/countries/philippines.py
akshiDhi May 30, 2026
658ee68
Indonesia: add Vesak 2026 date
akshiDhi May 30, 2026
962c762
Philippines: extend Lunar New Year confirmed years to 2026
akshiDhi May 30, 2026
38630e0
Merge branch 'vacanza:dev' into dev
akshiDhi May 31, 2026
bf0f4f3
Albania: extend Islamic holiday confirmed years to 2026
akshiDhi May 31, 2026
2bf099b
Myanmar: extend Islamic holiday confirmed years to 2026
akshiDhi May 31, 2026
f067db9
Update confirmed years for EID_AL_ADHA
akshiDhi May 31, 2026
b00c438
Update confirmed years for Islamic holidays in Albania
akshiDhi May 31, 2026
ab3aa34
Merge branch 'vacanza:dev' into dev
akshiDhi Jun 3, 2026
2898021
Add _IslamicMabimsLunar calendar class for MABIMS crescent visibility…
Jun 4, 2026
6855009
Fix _IslamicMabimsLunar: inherit from _CustomCalendar and add CONFIRM…
Jun 4, 2026
b61f1b7
Fix tests: add confirmed/estimated flag checks and 2006 dual-date cov…
Jun 4, 2026
2aa88da
Add _IslamicMabimsLunar with full astronomical calculation engine via…
Jun 8, 2026
777cbea
Fix mabims_generator: use exact sunset time instead of fixed approxim…
Jun 9, 2026
af2db00
Remove duplicate import and clean print statements
akshiDhi Jun 19, 2026
d6733b0
Add type annotations for date attributes in _IslamicLunar
akshiDhi Jun 19, 2026
abc656a
Remove unused math import from mabims_generator.py
akshiDhi Jun 19, 2026
e5e9cfb
Update mabims_generator.py
akshiDhi Jun 19, 2026
85349e6
Refactor mabims_generator to use class and direct astronomical calcul…
akshiDhi Jul 1, 2026
250b191
Optimize MABIMS generator script using Skyfield vectorized predictions
akshiDhi Jul 4, 2026
1a476ff
Refactor mabims_generator to use direct array indexing for new moons
akshiDhi Jul 4, 2026
60e9d52
Apply code formatting
akshiDhi Jul 4, 2026
65b762c
Refactor and optimize mabims_generator visibility checks
akshiDhi Jul 7, 2026
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
2 changes: 1 addition & 1 deletion holidays/calendars/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
from holidays.calendars.gregorian import GREGORIAN_CALENDAR
from holidays.calendars.hebrew import _HebrewLunisolar
from holidays.calendars.hindu import _CustomHinduHolidays, _HinduLunisolar
from holidays.calendars.islamic import _CustomIslamicHolidays, _IslamicLunar
from holidays.calendars.islamic import _CustomIslamicHolidays, _IslamicLunar, _IslamicMabimsLunar
from holidays.calendars.julian import JULIAN_CALENDAR
from holidays.calendars.julian_revised import JULIAN_REVISED_CALENDAR
from holidays.calendars.mongolian import _CustomMongolianHolidays, _MongolianLunisolar
Expand Down
Loading