Skip to content

Commit 271b946

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 (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#76135 Signed-off-by: Christophe Monniez (moc) <moc@odoo.com>
1 parent 69a1289 commit 271b946

File tree

7 files changed

+0
-7
lines changed

7 files changed

+0
-7
lines changed

addons/point_of_sale/tools/posbox/overwrite_before_init/etc/init_posbox_image.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@ PKGS_TO_INSTALL="
6868
python3-dateutil \
6969
python3-decorator \
7070
python3-docutils \
71-
python3-feedparser \
7271
python3-pil \
7372
python3-jinja2 \
7473
python3-ldap \

debian/control

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ Depends:
2121
python3-dateutil,
2222
python3-decorator,
2323
python3-docutils,
24-
python3-feedparser,
2524
python3-html2text,
2625
python3-pil,
2726
python3-jinja2,

requirements.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ chardet==3.0.4
33
decorator==4.0.10
44
docutils==0.12
55
ebaysdk==2.1.5
6-
feedparser==5.2.1
76
gevent==1.1.2 ; sys_platform != 'win32' and python_version < '3.7'
87
gevent==1.5.0 ; python_version >= '3.7'
98
greenlet==0.4.10 ; python_version < '3.7'

setup.cfg

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ requires =
1616
python3-babel
1717
python3-decorator
1818
python3-docutils
19-
python3-feedparser
2019
python3-gevent
2120
python3-greenlet
2221
python3-html2text

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@
2626
'babel >= 1.0',
2727
'decorator',
2828
'docutils',
29-
'feedparser',
3029
'gevent',
3130
'html2text',
3231
'Jinja2',

setup/package.dfdebian

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ RUN apt-get update -qq && \
2727
python3-dateutil \
2828
python3-decorator \
2929
python3-docutils \
30-
python3-feedparser \
3130
python3-gevent \
3231
python3-html2text \
3332
python3-pil \

setup/package.dffedora

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ RUN dnf update -d 0 -e 0 -y && \
1313
python3-babel \
1414
python3-decorator \
1515
python3-docutils \
16-
python3-feedparser \
1716
python3-gevent \
1817
python3-greenlet \
1918
python3-html2text \

0 commit comments

Comments
 (0)