Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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: 5 additions & 2 deletions holidays/countries/indonesia.py
Original file line number Diff line number Diff line change
Expand Up @@ -638,6 +638,7 @@ class IndonesiaStaticHolidays:
* <https://web.archive.org/web/20250413193243/https://setkab.go.id/presiden-tandatangani-keppres-perubahan-cuti-bersama-bagi-asn/>
* <https://web.archive.org/web/20250413193243/https://setkab.go.id/inilah-keppres-7-2024-tentang-cuti-bersama-asn-tahun-2024/>
* <https://web.archive.org/web/20250413193349/https://setkab.go.id/pemerintah-tetapkan-hari-libur-nasional-dan-cuti-bersama-tahun-2025/>
* <https://web.archive.org/web/20250802143125/https://news.detik.com/berita/d-8039857/pemerintah-tetapkan-senin-18-agustus-hari-libur>
"""

# General Election Day.
Expand Down Expand Up @@ -669,6 +670,8 @@ class IndonesiaStaticHolidays:
vesak_joint_holiday = tr("Cuti Bersama Hari Raya Waisak")
# New Year's Joint Holiday.
new_years_joint_holiday = tr("Cuti Bersama Tahun Baru Masehi")
# Independence Day Joint Holiday.
independence_day_joint_holiday = tr("Cuti Bersama Hari Kemerdekaan Republik Indonesia")

special_public_holidays = {
1999: (JUN, 7, legislative_election_day),
Expand Down Expand Up @@ -728,8 +731,7 @@ class IndonesiaStaticHolidays:
2006: (
(MAR, 31, day_of_silence_joint_holiday),
(MAY, 26, ascension_joint_holiday),
# Independence Day Joint Holiday.
(AUG, 18, tr("Cuti Bersama Hari Kemerdekaan Republik Indonesia")),
(AUG, 18, independence_day_joint_holiday),
(OCT, 23, eid_al_fitr_joint_holiday),
(OCT, 26, eid_al_fitr_joint_holiday),
(OCT, 27, eid_al_fitr_joint_holiday),
Expand Down Expand Up @@ -877,6 +879,7 @@ class IndonesiaStaticHolidays:
(MAY, 13, vesak_joint_holiday),
(MAY, 30, ascension_joint_holiday),
(JUN, 9, eid_al_adha_joint_holiday),
(AUG, 18, independence_day_joint_holiday),
(DEC, 26, christmas_joint_holiday),
),
}
Expand Down
1 change: 1 addition & 0 deletions snapshots/countries/ID_COMMON.json
Original file line number Diff line number Diff line change
Expand Up @@ -1126,6 +1126,7 @@
"2025-06-09": "Eid al-Adha Joint Holiday",
"2025-06-27": "Islamic New Year",
"2025-08-17": "Independence Day",
"2025-08-18": "Independence Day Joint Holiday",
"2025-09-05": "Prophet's Birthday",
"2025-12-25": "Christmas Day",
"2025-12-26": "Christmas Joint Holiday",
Expand Down
1 change: 1 addition & 0 deletions tests/countries/test_indonesia.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,7 @@ def test_special_government(self):
"2025-05-13",
"2025-05-30",
"2025-06-09",
"2025-08-18",
"2025-12-26",
)
dt_observed = ("2020-12-31",)
Expand Down
Loading