Skip to content

Commit

Permalink
Upgrade libraries
Browse files Browse the repository at this point in the history
  • Loading branch information
SimoneLazzaris committed Mar 28, 2024
1 parent f9cc104 commit 75a4610
Show file tree
Hide file tree
Showing 4 changed files with 459 additions and 1,423 deletions.
1,788 changes: 381 additions & 1,407 deletions immudb/grpc/schema_pb2.py

Large diffs are not rendered by default.

35 changes: 30 additions & 5 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,30 @@
-r requirements.txt

pytest>=4.6.9
grpcio-tools>=1.48.1
pytz==2022.1
appier==1.32.0
cachetools==5.3.3
certifi==2024.2.2
charset-normalizer==3.3.2
ecdsa==0.18.0
google-api==0.1.12
google-api-core==2.18.0
google-api-python-client==2.123.0
google-auth==2.29.0
google-auth-httplib2==0.2.0
googleapis-common-protos==1.63.0
grpcio==1.62.1
grpcio-tools==1.62.1
httplib2==0.22.0
idna==3.6
iniconfig==2.0.0
packaging==24.0
pluggy==1.4.0
proto-plus==1.23.0
protobuf==4.25.3
pyasn1==0.6.0
pyasn1_modules==0.4.0
pyparsing==3.1.2
pytest==8.1.1
pytz==2024.1
requests==2.31.0
rsa==4.9
six==1.16.0
uritemplate==4.1.1
urllib3==2.2.1
28 changes: 23 additions & 5 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,24 @@
grpcio>=1.48.1
protobuf>=3.12.0<3.20.x
appier==1.32.0
cachetools==5.3.3
certifi==2024.2.2
charset-normalizer==3.3.2
ecdsa==0.18.0
google-api==0.1.12
googleapis-common-protos==1.56.4
google-api-core==2.10.0
ecdsa>=0.18.0
google-api-core==2.18.0
google-api-python-client==2.123.0
google-auth==2.29.0
google-auth-httplib2==0.2.0
googleapis-common-protos==1.63.0
grpcio==1.62.1
httplib2==0.22.0
idna==3.6
proto-plus==1.23.0
protobuf==4.25.3
pyasn1==0.6.0
pyasn1_modules==0.4.0
pyparsing==3.1.2
requests==2.31.0
rsa==4.9
six==1.16.0
uritemplate==4.1.1
urllib3==2.2.1
31 changes: 25 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
long_description = fh.read()

setup(name='immudb-py',
version='1.4.0',
version='1.4.1',
license="Apache License Version 2.0",
description='Python SDK for Immudb',
long_description=long_description,
Expand All @@ -30,11 +30,30 @@
'immudb.grpc', 'immudb.handler', 'immudb.schema'],
keywords=['immudb', 'immutable'],
install_requires=[
'grpcio>=1.31.0',
'protobuf>=3.13.0,<4.0.0',
'appier>=1.32.0',
'cachetools>=5.3.3',
'certifi>=2024.2.2',
'charset-normalizer>=3.3.2',
'ecdsa>=0.18.0',
'google-api>=0.1.12',
'google-api-core>=1.22.1',
'ecdsa>=0.16.1'
'google-api-core>=2.18.0',
'google-api-python-client>=2.123.0',
'google-auth>=2.29.0',
'google-auth-httplib2>=0.2.0',
'googleapis-common-protos>=1.63.0',
'grpcio>=1.62.1',
'httplib2>=0.22.0',
'idna>=3.6',
'proto-plus>=1.23.0',
'protobuf>=4.25.3',
'pyasn1>=0.6.0',
'pyasn1_modules>=0.4.0',
'pyparsing>=3.1.2',
'requests>=2.31.0',
'rsa>=4.9',
'six>=1.16.0',
'uritemplate>=4.1.1',
'urllib3>=2.2.1',
],
classifiers=[
'Intended Audience :: Developers',
Expand All @@ -46,5 +65,5 @@
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
python_requires='>=3.6',
python_requires='>=3.8',
)

0 comments on commit 75a4610

Please sign in to comment.