From d5c1e26354f530784941e8d0ae63dbd47557b9c3 Mon Sep 17 00:00:00 2001 From: link2xt Date: Sat, 1 May 2021 16:42:00 +0300 Subject: [PATCH] python: list `requests` as a requirement It is used in `testplugin.py`. --- CHANGELOG.md | 2 ++ python/setup.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a6c5a398c..9edce45bb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,8 @@ - python: fix building of bindings against system-wide install of `libdeltachat` #2383 #2385 +- python: list `requests` as a requirement #2390 + - fix creation of many delete jobs when being offline #2372 - synchronize status between devices #2386 diff --git a/python/setup.py b/python/setup.py index 802bc7e76..14db819a3 100644 --- a/python/setup.py +++ b/python/setup.py @@ -18,7 +18,7 @@ def main(): description='Python bindings for the Delta Chat Core library using CFFI against the Rust-implemented libdeltachat', long_description=long_description, author='holger krekel, Floris Bruynooghe, Bjoern Petersen and contributors', - install_requires=['cffi>=1.0.0', 'pluggy', 'imapclient'], + install_requires=['cffi>=1.0.0', 'pluggy', 'imapclient', 'requests'], packages=setuptools.find_packages('src'), package_dir={'': 'src'}, cffi_modules=['src/deltachat/_build.py:ffibuilder'],