From d8e5a8e39ab89d3cd4a92e028b51cb433145500e Mon Sep 17 00:00:00 2001 From: Ace Date: Fri, 26 Feb 2021 21:54:15 +0100 Subject: [PATCH 1/2] Freeze arrow to v0.17.0 -> dependency issue #175 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 75cd26d..e9ff5b6 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ __install_requires__ = ['pyowm==3.1.1', # weather 'recurring-ical-events==0.1.17b0',# parse recurring events 'feedparser==5.2.1', # RSS-feeds # 'numpy>=1.18.2', # image pre-processing -> removed for issues with rpi os - 'arrow>=0.15.6', # time handling + 'arrow==0.17.0', # time handling 'Flask==1.1.2', # webserver 'Flask-WTF==0.14.3', # webforms 'todoist-python==8.1.2', # todoist api From ed792a2565c58186fa590c8a2bfeb0c4b4627289 Mon Sep 17 00:00:00 2001 From: Ace Date: Fri, 26 Feb 2021 21:55:14 +0100 Subject: [PATCH 2/2] Freeze arrow to v0.17.0 -> dependency issue #175 --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index b9347c1..81ae15b 100644 --- a/requirements.txt +++ b/requirements.txt @@ -4,7 +4,7 @@ icalendar==4.0.6 # iCalendar parsing recurring-ical-events==0.1.17b0 # parse recurring events feedparser==5.2.1 # parse RSS-feeds numpy>=1.18.2 # image pre-processing #pre-installed on Raspbian, omitting -arrow>=0.15.6 # time operations +arrow==0.17.0 # time operations Flask==1.1.2 # webserver Flask-WTF==0.14.3 # webforms todoist-python==8.1.2 # todoist api