From 15272951e2121032570936c23b406fb6331a4e7d Mon Sep 17 00:00:00 2001 From: Agriya Khetarpal <74401230+agriyakhetarpal@users.noreply.github.com> Date: Sat, 13 Dec 2025 00:52:08 +0530 Subject: [PATCH 1/2] Bump to `yaml2ics` stable --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 89ba95c6..4148c2b5 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,2 @@ pre-commit==4.5.0 -yaml2ics==0.3rc0 +yaml2ics==0.3 From 7bcceb52e9718829011f6373c599c5652e96330b Mon Sep 17 00:00:00 2001 From: Agriya Khetarpal <74401230+agriyakhetarpal@users.noreply.github.com> Date: Sat, 13 Dec 2025 00:53:53 +0530 Subject: [PATCH 2/2] Use `python -m` syntax --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 05ba08cc..b5b92661 100644 --- a/Makefile +++ b/Makefile @@ -20,7 +20,7 @@ $(CALENDAR_DIR): mkdir -p $(CALENDAR_DIR) $(CALENDAR_DIR)/%.ics: calendars/%.yaml $(CALENDAR_DIR) - yaml2ics $< > $@ + python -m yaml2ics $< > $@ CALENDAR_SOURCES = $(wildcard calendars/*.yaml) calendars: $(subst calendars,$(CALENDAR_DIR),$(CALENDAR_SOURCES:.yaml=.ics))