1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/kresus_ynh.git synced 2024-09-03 19:36:10 +02:00

Remove python3-pdfminer and fix missing pdfminer dependency instead

This commit is contained in:
Nicolas Frandeboeuf 2022-05-31 12:52:08 +00:00
parent 5a7ef0ae90
commit a0ae56293e
3 changed files with 3 additions and 3 deletions

View file

@ -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

View file

@ -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
)
#=================================================

View file

@ -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
)
#=================================================