1
0
Fork 0
mirror of https://github.com/deltachat/deltachat-core.git synced 2025-10-03 17:59:19 +02:00

address #273 -- introduce attr for contact/chat/message/EventHandler

also refine the GC-handling of contact and message pointers.
free-ing dc_context pointers currently does not work because
the threads are keeping a reference and not shutting down.
help on this shutdown issue from @r10s or @flub welcome.
I think fixing the context GC/shutdown issue should not hold
up merging this branch.
This commit is contained in:
holger krekel 2018-09-13 12:12:49 +02:00
parent 64a8d85be5
commit 75f8169072
5 changed files with 94 additions and 36 deletions

View file

@ -11,7 +11,7 @@ def main():
long_description = long_description,
author='Delta Chat contributors',
setup_requires=['cffi>=1.0.0'],
install_requires=['cffi>=1.0.0', 'requests'],
install_requires=['cffi>=1.0.0', 'requests', 'attr'],
packages=setuptools.find_packages('src'),
package_dir={'': 'src'},
cffi_modules=['src/deltachat/_build.py:ffibuilder'],