rpyc-pve-cloud 0.1.2__tar.gz → 0.1.3__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 (19) hide show
  1. {rpyc_pve_cloud-0.1.2/src/rpyc_pve_cloud.egg-info → rpyc_pve_cloud-0.1.3}/PKG-INFO +2 -2
  2. {rpyc_pve_cloud-0.1.2 → rpyc_pve_cloud-0.1.3}/requirements.txt +1 -1
  3. rpyc_pve_cloud-0.1.3/src/pve_cloud_rpc/_version.py +1 -0
  4. {rpyc_pve_cloud-0.1.2 → rpyc_pve_cloud-0.1.3}/src/pve_cloud_rpc/server.py +3 -1
  5. {rpyc_pve_cloud-0.1.2 → rpyc_pve_cloud-0.1.3/src/rpyc_pve_cloud.egg-info}/PKG-INFO +2 -2
  6. {rpyc_pve_cloud-0.1.2 → rpyc_pve_cloud-0.1.3}/src/rpyc_pve_cloud.egg-info/requires.txt +1 -1
  7. rpyc_pve_cloud-0.1.2/src/pve_cloud_rpc/_version.py +0 -1
  8. {rpyc_pve_cloud-0.1.2 → rpyc_pve_cloud-0.1.3}/LICENSE.md +0 -0
  9. {rpyc_pve_cloud-0.1.2 → rpyc_pve_cloud-0.1.3}/README.md +0 -0
  10. {rpyc_pve_cloud-0.1.2 → rpyc_pve_cloud-0.1.3}/pyproject.toml +0 -0
  11. {rpyc_pve_cloud-0.1.2 → rpyc_pve_cloud-0.1.3}/setup.cfg +0 -0
  12. {rpyc_pve_cloud-0.1.2 → rpyc_pve_cloud-0.1.3}/src/pve_cloud_rpc/protos/cloud_pb2.py +0 -0
  13. {rpyc_pve_cloud-0.1.2 → rpyc_pve_cloud-0.1.3}/src/pve_cloud_rpc/protos/cloud_pb2_grpc.py +0 -0
  14. {rpyc_pve_cloud-0.1.2 → rpyc_pve_cloud-0.1.3}/src/pve_cloud_rpc/protos/health_pb2.py +0 -0
  15. {rpyc_pve_cloud-0.1.2 → rpyc_pve_cloud-0.1.3}/src/pve_cloud_rpc/protos/health_pb2_grpc.py +0 -0
  16. {rpyc_pve_cloud-0.1.2 → rpyc_pve_cloud-0.1.3}/src/rpyc_pve_cloud.egg-info/SOURCES.txt +0 -0
  17. {rpyc_pve_cloud-0.1.2 → rpyc_pve_cloud-0.1.3}/src/rpyc_pve_cloud.egg-info/dependency_links.txt +0 -0
  18. {rpyc_pve_cloud-0.1.2 → rpyc_pve_cloud-0.1.3}/src/rpyc_pve_cloud.egg-info/entry_points.txt +0 -0
  19. {rpyc_pve_cloud-0.1.2 → rpyc_pve_cloud-0.1.3}/src/rpyc_pve_cloud.egg-info/top_level.txt +0 -0
@@ -1,10 +1,10 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: rpyc-pve-cloud
3
- Version: 0.1.2
3
+ Version: 0.1.3
4
4
  Author-email: Tobias Huebner <tobias.huebner@vmzberlin.com>
5
5
  License-Expression: GPL-3.0-or-later
6
6
  License-File: LICENSE.md
7
- Requires-Dist: py-pve-cloud<0.15.0,>=0.14.1
7
+ Requires-Dist: py-pve-cloud<0.15.0,>=0.14.3
8
8
  Requires-Dist: grpcio==1.76.0
9
9
  Requires-Dist: asyncssh==2.21.0
10
10
  Requires-Dist: protobuf==6.33.2
@@ -1,5 +1,5 @@
1
1
  # pessimistic operator for local tdd installs (pip install -e .)
2
- py-pve-cloud>=0.14.1,<0.15.0
2
+ py-pve-cloud>=0.14.3,<0.15.0
3
3
  grpcio==1.76.0
4
4
  asyncssh==2.21.0
5
5
  protobuf==6.33.2
@@ -0,0 +1 @@
1
+ __version__ = "0.1.3"
@@ -68,7 +68,9 @@ class CloudServiceServicer(cloud_pb2_grpc.CloudServiceServicer):
68
68
  )
69
69
  catted_secret = cmd.stdout
70
70
 
71
- if request.rstrip: # defaults to true but in special cases user might want to keep newlines (e.g. certs)
71
+ if (
72
+ request.rstrip
73
+ ): # defaults to true but in special cases user might want to keep newlines (e.g. certs)
72
74
  catted_secret = catted_secret.rstrip()
73
75
 
74
76
  return cloud_pb2.GetCloudSecretResponse(secret=catted_secret)
@@ -1,10 +1,10 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: rpyc-pve-cloud
3
- Version: 0.1.2
3
+ Version: 0.1.3
4
4
  Author-email: Tobias Huebner <tobias.huebner@vmzberlin.com>
5
5
  License-Expression: GPL-3.0-or-later
6
6
  License-File: LICENSE.md
7
- Requires-Dist: py-pve-cloud<0.15.0,>=0.14.1
7
+ Requires-Dist: py-pve-cloud<0.15.0,>=0.14.3
8
8
  Requires-Dist: grpcio==1.76.0
9
9
  Requires-Dist: asyncssh==2.21.0
10
10
  Requires-Dist: protobuf==6.33.2
@@ -1,4 +1,4 @@
1
- py-pve-cloud<0.15.0,>=0.14.1
1
+ py-pve-cloud<0.15.0,>=0.14.3
2
2
  grpcio==1.76.0
3
3
  asyncssh==2.21.0
4
4
  protobuf==6.33.2
@@ -1 +0,0 @@
1
- __version__ = "0.1.2"
File without changes
File without changes