mirror of
https://github.com/deltachat/deltachat-core.git
synced 2025-10-05 02:29:28 +02:00
prepare deltachat-0.9 python bindings release
This commit is contained in:
parent
fad78f1b23
commit
d510135fb2
4 changed files with 22 additions and 1 deletions
|
@ -7,6 +7,9 @@ rm -rf python/wheelhouse/*
|
||||||
cd $TRAVIS_BUILD_DIR
|
cd $TRAVIS_BUILD_DIR
|
||||||
docker run --rm -it -v $(pwd):/io deltachat/wheel /io/python/wheelbuilder/build-wheels.sh
|
docker run --rm -it -v $(pwd):/io deltachat/wheel /io/python/wheelbuilder/build-wheels.sh
|
||||||
|
|
||||||
|
# create an index at the community "devpi" python packaging site
|
||||||
|
# and push both binary wheel packages and the source package to
|
||||||
|
# the https://m.devpi.net/dc/BRANCHNAME index
|
||||||
devpi use https://m.devpi.net
|
devpi use https://m.devpi.net
|
||||||
devpi login dc --password $DEVPI_LOGIN
|
devpi login dc --password $DEVPI_LOGIN
|
||||||
|
|
||||||
|
|
|
@ -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
|
0.8.2
|
||||||
-----
|
-----
|
||||||
|
|
||||||
|
|
|
@ -31,6 +31,16 @@ If you have a linux system you, may install
|
||||||
python -c "import deltachat"
|
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
|
Installing bindings from source
|
||||||
===============================
|
===============================
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@ from deltachat import capi, const
|
||||||
from deltachat.capi import ffi
|
from deltachat.capi import ffi
|
||||||
from deltachat.account import Account # noqa
|
from deltachat.account import Account # noqa
|
||||||
|
|
||||||
__version__ = "0.9.0dev1"
|
__version__ = "0.9.0"
|
||||||
|
|
||||||
|
|
||||||
_DC_CALLBACK_MAP = {}
|
_DC_CALLBACK_MAP = {}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue