Skip to content

Commit

Permalink
[REM] packaging: remove obsolete dependency feedparser
Browse files Browse the repository at this point in the history
- 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 (67c17cb), 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 Alir3z4/html2text#220)
- So we can safely drop this dependency

closes odoo#76565

X-original-commit: 153ecbb
Signed-off-by: Christophe Monniez (moc) <[email protected]>
  • Loading branch information
nilshamerlinck authored and d-fence committed Sep 15, 2021
1 parent 9a47236 commit ffadcb1
Show file tree
Hide file tree
Showing 7 changed files with 0 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ PKGS_TO_INSTALL="
python3-decorator \
python3-dev \
python3-docutils \
python3-feedparser \
python3-html2text \
python3-jinja2 \
python3-ldap \
Expand Down
1 change: 0 additions & 1 deletion debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ Depends:
python3-dateutil,
python3-decorator,
python3-docutils,
python3-feedparser,
python3-freezegun,
python3-html2text,
python3-pil,
Expand Down
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ chardet==3.0.4
decorator==4.3.0
docutils==0.14
ebaysdk==2.1.5
feedparser==5.2.1
freezegun==0.3.11; python_version < '3.8'
freezegun==0.3.15; python_version >= '3.8'
gevent==1.1.2 ; sys_platform != 'win32' and python_version < '3.7'
Expand Down
1 change: 0 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ requires =
python3-babel
python3-decorator
python3-docutils
python3-feedparser
python3-freezegun
python3-gevent
python3-greenlet
Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
'babel >= 1.0',
'decorator',
'docutils',
'feedparser',
'gevent',
'html2text',
'idna',
Expand Down
1 change: 0 additions & 1 deletion setup/package.dfdebian
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ RUN apt-get update -qq && \
python3-dateutil \
python3-decorator \
python3-docutils \
python3-feedparser \
python3-gevent \
python3-html2text \
python3-pil \
Expand Down
1 change: 0 additions & 1 deletion setup/package.dffedora
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ RUN dnf update -d 0 -e 0 -y && \
python3-dateutil \
python3-decorator \
python3-docutils \
python3-feedparser \
python3-freezegun \
python3-gevent \
python3-greenlet \
Expand Down

0 comments on commit ffadcb1

Please sign in to comment.