rapida-python 0.0.10__tar.gz → 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (33) hide show
  1. {rapida-python-0.0.10 → rapida-python-0.1.0}/PKG-INFO +1 -1
  2. {rapida-python-0.0.10 → rapida-python-0.1.0}/rapida/version.py +2 -2
  3. {rapida-python-0.0.10 → rapida-python-0.1.0}/rapida_python.egg-info/PKG-INFO +1 -1
  4. {rapida-python-0.0.10 → rapida-python-0.1.0}/rapida_python.egg-info/requires.txt +2 -2
  5. {rapida-python-0.0.10 → rapida-python-0.1.0}/setup.py +2 -2
  6. {rapida-python-0.0.10 → rapida-python-0.1.0}/README.md +0 -0
  7. {rapida-python-0.0.10 → rapida-python-0.1.0}/bin/__init__.py +0 -0
  8. {rapida-python-0.0.10 → rapida-python-0.1.0}/rapida/__init__.py +0 -0
  9. {rapida-python-0.0.10 → rapida-python-0.1.0}/rapida/artifacts/__init__.py +0 -0
  10. {rapida-python-0.0.10 → rapida-python-0.1.0}/rapida/artifacts/protos/__init__.py +0 -0
  11. {rapida-python-0.0.10 → rapida-python-0.1.0}/rapida/artifacts/protos/common_pb2.py +0 -0
  12. {rapida-python-0.0.10 → rapida-python-0.1.0}/rapida/artifacts/protos/common_pb2_grpc.py +0 -0
  13. {rapida-python-0.0.10 → rapida-python-0.1.0}/rapida/artifacts/protos/invoker_api_pb2.py +0 -0
  14. {rapida-python-0.0.10 → rapida-python-0.1.0}/rapida/artifacts/protos/invoker_api_pb2_grpc.py +0 -0
  15. {rapida-python-0.0.10 → rapida-python-0.1.0}/rapida/artifacts/protos/talk_api_pb2.py +0 -0
  16. {rapida-python-0.0.10 → rapida-python-0.1.0}/rapida/artifacts/protos/talk_api_pb2_grpc.py +0 -0
  17. {rapida-python-0.0.10 → rapida-python-0.1.0}/rapida/client/__init__.py +0 -0
  18. {rapida-python-0.0.10 → rapida-python-0.1.0}/rapida/client/grpc_bridge.py +0 -0
  19. {rapida-python-0.0.10 → rapida-python-0.1.0}/rapida/client/rapida_bridge.py +0 -0
  20. {rapida-python-0.0.10 → rapida-python-0.1.0}/rapida/client/response_wrapper.py +0 -0
  21. {rapida-python-0.0.10 → rapida-python-0.1.0}/rapida/exceptions/__init__.py +0 -0
  22. {rapida-python-0.0.10 → rapida-python-0.1.0}/rapida/exceptions/exceptions.py +0 -0
  23. {rapida-python-0.0.10 → rapida-python-0.1.0}/rapida/rapida_client.py +0 -0
  24. {rapida-python-0.0.10 → rapida-python-0.1.0}/rapida/rapida_client_options.py +0 -0
  25. {rapida-python-0.0.10 → rapida-python-0.1.0}/rapida/tests/__init__.py +0 -0
  26. {rapida-python-0.0.10 → rapida-python-0.1.0}/rapida/tests/test_rapida_client.py +0 -0
  27. {rapida-python-0.0.10 → rapida-python-0.1.0}/rapida/tests/test_rapida_client_options.py +0 -0
  28. {rapida-python-0.0.10 → rapida-python-0.1.0}/rapida/tests/test_values.py +0 -0
  29. {rapida-python-0.0.10 → rapida-python-0.1.0}/rapida/values.py +0 -0
  30. {rapida-python-0.0.10 → rapida-python-0.1.0}/rapida_python.egg-info/SOURCES.txt +0 -0
  31. {rapida-python-0.0.10 → rapida-python-0.1.0}/rapida_python.egg-info/dependency_links.txt +0 -0
  32. {rapida-python-0.0.10 → rapida-python-0.1.0}/rapida_python.egg-info/top_level.txt +0 -0
  33. {rapida-python-0.0.10 → rapida-python-0.1.0}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: rapida-python
3
- Version: 0.0.10
3
+ Version: 0.1.0
4
4
  Summary: rapidaAi sdk to integrate rapida.ai api's
5
5
  Home-page: https://github.com/rapidaai/rapida-sdk
6
6
  Author-email: code@rapida.ai
@@ -3,8 +3,8 @@ author: prashant.srivastav
3
3
  """
4
4
 
5
5
  _MAJOR = "0"
6
- _MINOR = "0"
7
- _REVISION = "10"
6
+ _MINOR = "1"
7
+ _REVISION = "0"
8
8
 
9
9
  VERSION_SHORT = f"{_MAJOR}.{_MINOR}"
10
10
  VERSION = f"{_MAJOR}.{_MINOR}.{_REVISION}"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: rapida-python
3
- Version: 0.0.10
3
+ Version: 0.1.0
4
4
  Summary: rapidaAi sdk to integrate rapida.ai api's
5
5
  Home-page: https://github.com/rapidaai/rapida-sdk
6
6
  Author-email: code@rapida.ai
@@ -1,5 +1,5 @@
1
- grpcio==1.60.0
2
- protobuf==4.25.2
1
+ grpcio==1.65.4
2
+ protobuf==5.27.3
3
3
  pillow==10.4.0
4
4
 
5
5
  [grpcio-tools]
@@ -34,8 +34,8 @@ setup(
34
34
  url="https://github.com/rapidaai/rapida-sdk",
35
35
  packages=find_packages(exclude=["examples", "invoker-api.proto"]),
36
36
  install_requires=[
37
- "grpcio==1.60.0",
38
- "protobuf==4.25.2",
37
+ "grpcio==1.65.4",
38
+ "protobuf==5.27.3",
39
39
  "pillow==10.4.0"
40
40
  ],
41
41
  extras_require={
File without changes
File without changes