1
0
Fork 0
mirror of https://github.com/deltachat/deltachat-core.git synced 2025-10-04 18:29:19 +02:00

prepare deltachat-0.9 python bindings release

This commit is contained in:
holger krekel 2019-03-24 22:12:02 +01:00
parent fad78f1b23
commit d510135fb2
No known key found for this signature in database
GPG key ID: 8E3B03A279B772D6
4 changed files with 22 additions and 1 deletions

View file

@ -1,3 +1,11 @@
0.9.0
-----
- build against latest deltachat core (0.41 ++)
- streamline package building
- allow installing from devpi.net package index
0.8.2
-----

View file

@ -31,6 +31,16 @@ If you have a linux system you, may install
python -c "import deltachat"
Installing a wheel from a github branch
---------------------------------------
For Linux, we automatically build wheels for all PRs
and push them to a devpi/pypi index which case be used
with ``pip``. For example, to install the latest "master" built::
pip install -i https://m.devpi.net/dc/master deltachat
Installing bindings from source
===============================

View file

@ -2,7 +2,7 @@ from deltachat import capi, const
from deltachat.capi import ffi
from deltachat.account import Account # noqa
__version__ = "0.9.0dev1"
__version__ = "0.9.0"
_DC_CALLBACK_MAP = {}