From 5a68997f234129f0a8c272df79f20a37aaea014f Mon Sep 17 00:00:00 2001 From: Ace Date: Mon, 31 Aug 2020 15:21:42 +0200 Subject: [PATCH] Disabled numpy from requirements Since numpy is pre-installed on Raspbian, it leads to errors while attempting to install numpy as a requirement of inkycal. To make the installation easier (not having to manually re-install or uninstall numpy), this requirement is temporary not included in the requirements. --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 668dcc9..81491ad 100644 --- a/requirements.txt +++ b/requirements.txt @@ -3,6 +3,6 @@ Pillow>=7.1.1 # imaging 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 +#numpy>=1.18.2 # image pre-processing #pre-installed on Raspbian, omitting arrow>=0.15.6 # time operations jsmin>=2.2.2 # parsing settings.jsonc file