Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='immudb_wrapper',
version='0.1.8',
version='0.1.9',
author='Daniil Anfimov',
author_email='anfimovdan@gmail.com',
description=(
Expand All @@ -24,7 +24,12 @@
scripts=['immudb_wrapper.py'],
install_requires=[
'GitPython>=3.1.20',
'immudb-py>=1.4.0',
# immudb-py 1.5 pulls protobuf>=4, whose PEP420 `google` namespace is
# broken by the stray `google-api` package immudb-py depends on, so
# `import google.protobuf` fails. Cap at <1.5 and keep protobuf on the
# 3.x line (pkg_resources namespace) which tolerates google-api.
'immudb-py>=1.4.0,<1.5',
'protobuf<4',
],
python_requires='>=3.7',
)
Loading