Skip to content
Snippets Groups Projects
Commit 271b9468 authored by Nils Hamerlinck's avatar Nils Hamerlinck
Browse files

[REM] packaging: remove obsolete dependency feedparser

- Up to odoo 10.0, feedparser dependency was optionally used in the cli of vendored html2text.py
  (see https://github.com/odoo/odoo/blob/10.0/addons/mail/models/html2text.py#L437)
- Since 11.0 (67c17cb3), vendored html2text.py has been removed in favor of maintained package
- Turns out the feedparser part in html2text was dead code for a long time anyway
  (see https://github.com/Alir3z4/html2text/issues/220

)
- So we can safely drop this dependency

closes odoo/odoo#76135

Signed-off-by: default avatarChristophe Monniez (moc) <moc@odoo.com>
parent 69a1289e
No related branches found
No related tags found
No related merge requests found
......@@ -68,7 +68,6 @@ PKGS_TO_INSTALL="
python3-dateutil \
python3-decorator \
python3-docutils \
python3-feedparser \
python3-pil \
python3-jinja2 \
python3-ldap \
......
......@@ -21,7 +21,6 @@ Depends:
python3-dateutil,
python3-decorator,
python3-docutils,
python3-feedparser,
python3-html2text,
python3-pil,
python3-jinja2,
......
......@@ -3,7 +3,6 @@ chardet==3.0.4
decorator==4.0.10
docutils==0.12
ebaysdk==2.1.5
feedparser==5.2.1
gevent==1.1.2 ; sys_platform != 'win32' and python_version < '3.7'
gevent==1.5.0 ; python_version >= '3.7'
greenlet==0.4.10 ; python_version < '3.7'
......
......@@ -16,7 +16,6 @@ requires =
python3-babel
python3-decorator
python3-docutils
python3-feedparser
python3-gevent
python3-greenlet
python3-html2text
......
......@@ -26,7 +26,6 @@ setup(
'babel >= 1.0',
'decorator',
'docutils',
'feedparser',
'gevent',
'html2text',
'Jinja2',
......
......@@ -27,7 +27,6 @@ RUN apt-get update -qq && \
python3-dateutil \
python3-decorator \
python3-docutils \
python3-feedparser \
python3-gevent \
python3-html2text \
python3-pil \
......
......@@ -13,7 +13,6 @@ RUN dnf update -d 0 -e 0 -y && \
python3-babel \
python3-decorator \
python3-docutils \
python3-feedparser \
python3-gevent \
python3-greenlet \
python3-html2text \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment