File tree Expand file tree Collapse file tree 2 files changed +27
-6
lines changed Expand file tree Collapse file tree 2 files changed +27
-6
lines changed Original file line number Diff line number Diff line change @@ -15,17 +15,38 @@ This package is a pure-python client library for `Tarantool`_.
1515Download and Install
1616--------------------
1717
18- The recommended way to install ``tarantool `` package::
18+ The recommended way to install ``tarantool `` package is using PIP
19+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1920
20- $ pip install tarantool
21+ For Tarantool version < 1.6.0 you must get `` 0.3.* `` connector version
2122
22- You can also download zip archive, unpack it and run::
23+ ::
24+
25+ $ pip install tarantool\<0.4
26+
27+ For later Tarantool use version ``0.5.* `` connector version::
28+
29+ $ pip install tarantool\>0.4
30+
31+ You can also download zip archive, unpack it and run
32+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
33+
34+ ::
2335
2436 $ python setup.py install
2537
26- To install development version of the package use pip::
38+ To install development version of the package using pip
39+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
40+
41+ For Tarantool version < 1.6.0 you must get ``0.3.* `` connector version
42+
43+ ::
44+
45+ $ pip install git+https://github.com/tarantool/tarantool-python.git@stable
46+
47+ For later Tarantool use version ``0.5.* `` connector version::
2748
28- $ pip install git+https://github.com/mailru /tarantool-python
49+ $ pip install git+https://github.com/tarantool /tarantool-python.git@master
2950
3051
3152--------------------------------------------------------------------------------
Original file line number Diff line number Diff line change 11# -*- coding: utf-8 -*-
22# pylint: disable=C0301,W0105,W0401,W0614
33
4- __version__ = "0.3.4 "
4+ __version__ = "0.5.0 "
55
66from tarantool .connection import Connection
77from tarantool .const import (
You can’t perform that action at this time.
0 commit comments