Skip to content

Commit 625ca92

Browse files
committed
Update readme and bump version
1 parent 532df68 commit 625ca92

File tree

2 files changed

+27
-6
lines changed

2 files changed

+27
-6
lines changed

README.rst

Lines changed: 26 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,38 @@ This package is a pure-python client library for `Tarantool`_.
1515
Download 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
--------------------------------------------------------------------------------

tarantool/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22
# pylint: disable=C0301,W0105,W0401,W0614
33

4-
__version__ = "0.3.4"
4+
__version__ = "0.5.0"
55

66
from tarantool.connection import Connection
77
from tarantool.const import (

0 commit comments

Comments
 (0)