Skip to content
Snippets Groups Projects
Commit 153ecbba authored by Nils Hamerlinck's avatar Nils Hamerlinck Committed by Christophe Monniez
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#76273

X-original-commit: 271b9468
Signed-off-by: default avatarChristophe Monniez (moc) <moc@odoo.com>
parent a2f5fc97
No related branches found
No related tags found
No related merge requests found
...@@ -51,7 +51,6 @@ PKGS_TO_INSTALL=" ...@@ -51,7 +51,6 @@ PKGS_TO_INSTALL="
python3-decorator \ python3-decorator \
python3-dev \ python3-dev \
python3-docutils \ python3-docutils \
python3-feedparser \
python3-html2text \ python3-html2text \
python3-jinja2 \ python3-jinja2 \
python3-ldap \ python3-ldap \
......
...@@ -26,7 +26,6 @@ Depends: ...@@ -26,7 +26,6 @@ Depends:
python3-dateutil, python3-dateutil,
python3-decorator, python3-decorator,
python3-docutils, python3-docutils,
python3-feedparser,
python3-freezegun, python3-freezegun,
python3-html2text, python3-html2text,
python3-pil, python3-pil,
......
...@@ -3,7 +3,6 @@ chardet==3.0.4 ...@@ -3,7 +3,6 @@ chardet==3.0.4
decorator==4.3.0 decorator==4.3.0
docutils==0.14 docutils==0.14
ebaysdk==2.1.5 ebaysdk==2.1.5
feedparser==5.2.1
freezegun==0.3.11; python_version < '3.8' freezegun==0.3.11; python_version < '3.8'
freezegun==0.3.15; python_version >= '3.8' freezegun==0.3.15; python_version >= '3.8'
gevent==1.1.2 ; sys_platform != 'win32' and python_version < '3.7' gevent==1.1.2 ; sys_platform != 'win32' and python_version < '3.7'
......
...@@ -12,7 +12,6 @@ requires = ...@@ -12,7 +12,6 @@ requires =
python3-babel python3-babel
python3-decorator python3-decorator
python3-docutils python3-docutils
python3-feedparser
python3-freezegun python3-freezegun
python3-gevent python3-gevent
python3-greenlet python3-greenlet
......
...@@ -26,7 +26,6 @@ setup( ...@@ -26,7 +26,6 @@ setup(
'babel >= 1.0', 'babel >= 1.0',
'decorator', 'decorator',
'docutils', 'docutils',
'feedparser',
'gevent', 'gevent',
'html2text', 'html2text',
'idna', 'idna',
......
...@@ -27,7 +27,6 @@ RUN apt-get update -qq && \ ...@@ -27,7 +27,6 @@ RUN apt-get update -qq && \
python3-dateutil \ python3-dateutil \
python3-decorator \ python3-decorator \
python3-docutils \ python3-docutils \
python3-feedparser \
python3-gevent \ python3-gevent \
python3-html2text \ python3-html2text \
python3-pil \ python3-pil \
......
...@@ -18,7 +18,6 @@ RUN dnf update -d 0 -e 0 -y && \ ...@@ -18,7 +18,6 @@ RUN dnf update -d 0 -e 0 -y && \
python3-dateutil \ python3-dateutil \
python3-decorator \ python3-decorator \
python3-docutils \ python3-docutils \
python3-feedparser \
python3-freezegun \ python3-freezegun \
python3-gevent \ python3-gevent \
python3-greenlet \ python3-greenlet \
......
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