From 7d82c57c2c53c6de822a45c5dffaabb64de3f858 Mon Sep 17 00:00:00 2001 From: Alexander Turenko Date: Mon, 28 Dec 2020 03:48:58 +0300 Subject: [PATCH 1/2] pypi: correct msgpack library name In short, the msgpack library changes its name and now offered as 'msgpack' rather than 'msgpack-python'. All new versions of the library are shipped under the new name, so we should change our dependency information. See commit 148d12ea5dc4e999107211227a4da5f5a67bf62c ('travis-ci: verify different msgpack library versions') for details. Follows up #155 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 763872ca..c17634f6 100755 --- a/setup.py +++ b/setup.py @@ -83,6 +83,6 @@ def find_version(*file_paths): cmdclass=cmdclass, command_options=command_options, install_requires=[ - 'msgpack-python>=0.4', + 'msgpack>=0.4.0', ] ) From f3cbf38fd3b4a0f3a2b8a21b87ff8684fb4920dc Mon Sep 17 00:00:00 2001 From: Alexander Turenko Date: Mon, 28 Dec 2020 04:03:44 +0300 Subject: [PATCH 2/2] Bump version to 0.7.1 Follows up #183 --- debian/changelog | 9 +++++++++ rpm/tarantool-python.spec | 2 +- tarantool/__init__.py | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index bcce55a3..6ea23471 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,12 @@ +tarantool-python (0.7.1-0) unstable; urgency=medium + + ## Overview + + It is pure technical release. It fixes the dependency on the msgpack + library. + + -- Alexander Turenko Mon, 28 Dec 2020 04:01:30 +0300 + tarantool-python (0.7.0-0) unstable; urgency=medium ## Overview diff --git a/rpm/tarantool-python.spec b/rpm/tarantool-python.spec index ca99fcd9..2bc0f7e7 100644 --- a/rpm/tarantool-python.spec +++ b/rpm/tarantool-python.spec @@ -1,6 +1,6 @@ Summary: Python client library for Tarantool Database Name: tarantool-python -Version: 0.7.0 +Version: 0.7.1 Release: 1%{?dist} Source0: tarantool-python-%{version}.tar.gz License: BSD diff --git a/tarantool/__init__.py b/tarantool/__init__.py index 94132904..8ae0c44c 100644 --- a/tarantool/__init__.py +++ b/tarantool/__init__.py @@ -25,7 +25,7 @@ ENCODING_DEFAULT ) -__version__ = "0.7.0" +__version__ = "0.7.1" def connect(host="localhost", port=33013, user=None, password=None,