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'],