From a0ae56293e58c3e604e26d4c9fc219481d02c3f6 Mon Sep 17 00:00:00 2001 From: Nicolas Frandeboeuf Date: Tue, 31 May 2022 12:52:08 +0000 Subject: [PATCH] Remove python3-pdfminer and fix missing pdfminer dependency instead --- scripts/_common.sh | 2 +- scripts/install | 2 +- scripts/upgrade | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/_common.sh b/scripts/_common.sh index eaf544c..e16025c 100644 --- a/scripts/_common.sh +++ b/scripts/_common.sh @@ -5,7 +5,7 @@ #================================================= # dependencies used by the app -pkg_dependencies="dh-autoreconf python3-pip python3-dev python3-lxml python3-pillow virtualenv postgresql libffi-dev libopenjp2-7 python3-pdfminer" +pkg_dependencies="dh-autoreconf python3-pip python3-dev python3-lxml python3-pillow virtualenv postgresql libffi-dev libopenjp2-7" nodejs_version=14 diff --git a/scripts/install b/scripts/install index d807374..5dfcd71 100644 --- a/scripts/install +++ b/scripts/install @@ -132,7 +132,7 @@ virtualenv --python=python3 --system-site-packages "${final_path}/venv" set -o nounset pip install --upgrade pip - pip install woob html2text simplejson BeautifulSoup4 PyExecJS pdfminer.six --ignore-installed + pip install woob html2text simplejson BeautifulSoup4 PyExecJS typing-extensions pdfminer.six --ignore-installed ) #================================================= diff --git a/scripts/upgrade b/scripts/upgrade index 6c4a21a..dfc9648 100644 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -157,7 +157,7 @@ virtualenv --python=python3 --system-site-packages "${final_path}/venv" set -o nounset pip install --upgrade pip - pip install woob html2text simplejson BeautifulSoup4 PyExecJS pdfminer.six --ignore-installed + pip install woob html2text simplejson BeautifulSoup4 PyExecJS typing-extensions pdfminer.six --ignore-installed ) #=================================================