PyStellarDB 0.13.4__py2.py3-none-any.whl → 0.13.5__py2.py3-none-any.whl

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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: PyStellarDB
3
- Version: 0.13.4
3
+ Version: 0.13.5
4
4
  Summary: Python interface to StellarDB
5
5
  Home-page: https://github.com/WarpCloud/PyStellarDB
6
6
  Author: Zhiping Wang
@@ -0,0 +1,10 @@
1
+ pystellardb/__init__.py,sha256=JOl41NviMN-qDV0Z8ZPmhNIxvgyauGGJHdB4A-8MhqM,93
2
+ pystellardb/_version.py,sha256=cwBvUjWVT20dAp04I_QQFlk81VsfhUWKUfT2FKtmxhk,498
3
+ pystellardb/graph_types.py,sha256=XbtPebhaRV7OimW-GxFJGSOcp-OnzWrlIe9M7Xv3sbU,14032
4
+ pystellardb/stellar_hive.py,sha256=xVnONjG03CLNwW3dymR2ZqXiEUvcMlIvPIOxzyoDFfE,15067
5
+ pystellardb/stellar_rdd.py,sha256=TYwsWYeCxfOliGq1kV3ArNXdye55cKWZF7s9M9nDdt4,1324
6
+ PyStellarDB-0.13.5.dist-info/LICENSE,sha256=1qDFxrywejs7xNBfOr6T-7lOuqDgSNIES77kTYege3w,560
7
+ PyStellarDB-0.13.5.dist-info/METADATA,sha256=Lg8U6us8NJ-hlFQEwaZDsfGZOgvPKnChM7lY6HtTt3s,9390
8
+ PyStellarDB-0.13.5.dist-info/WHEEL,sha256=_4XEmVmaBFWtekSGrbfOGNjC2I5lUr0lZSRblBllIFA,109
9
+ PyStellarDB-0.13.5.dist-info/top_level.txt,sha256=DRk-SeGVCdVAzv2CwFmdu75Yo7DgjUA3Hpu-9l8qPuU,12
10
+ PyStellarDB-0.13.5.dist-info/RECORD,,
pystellardb/_version.py CHANGED
@@ -8,11 +8,11 @@ import json
8
8
 
9
9
  version_json = '''
10
10
  {
11
- "date": "2024-10-30T09:30:52+0800",
11
+ "date": "2024-12-17T19:30:54+0800",
12
12
  "dirty": false,
13
13
  "error": null,
14
- "full-revisionid": "88d8d41626e7131ffbf0e675bce34330a12fd953",
15
- "version": "0.13.4"
14
+ "full-revisionid": "edb05dd3d51f0a5af260e6cd442163058a81db20",
15
+ "version": "0.13.5"
16
16
  }
17
17
  ''' # END VERSION_JSON
18
18
 
@@ -241,7 +241,7 @@ class Edge(GraphElement):
241
241
  if 'startKey' not in m:
242
242
  raise ValueError("Could not find start node entity key in JSON")
243
243
 
244
- if schema.getVersion() == 18:
244
+ if schema.getVersion() >= 18:
245
245
  startUid = prop_dict['__srcuid']
246
246
  startLabelIdx = Vertex.parseLabelIdxFromRKV18(m['startKey'])
247
247
  else:
@@ -262,7 +262,7 @@ class Edge(GraphElement):
262
262
  if 'endKey' not in m:
263
263
  raise ValueError("Could not find end node entity key in JSON")
264
264
 
265
- if schema.getVersion() == 18:
265
+ if schema.getVersion() >= 18:
266
266
  endUid = prop_dict['__dstuid']
267
267
  endLabelIdx = Vertex.parseLabelIdxFromRKV18(m['endKey'])
268
268
  else:
@@ -1,10 +0,0 @@
1
- pystellardb/__init__.py,sha256=JOl41NviMN-qDV0Z8ZPmhNIxvgyauGGJHdB4A-8MhqM,93
2
- pystellardb/_version.py,sha256=YehYhtGB33qbbUg3YuBZDx-KkufC1FUtE3yG-4znzjg,498
3
- pystellardb/graph_types.py,sha256=o2iz4tOOyMxsEJja4dj4NL-48UG1bkdEgrNDPwYJum0,14032
4
- pystellardb/stellar_hive.py,sha256=xVnONjG03CLNwW3dymR2ZqXiEUvcMlIvPIOxzyoDFfE,15067
5
- pystellardb/stellar_rdd.py,sha256=TYwsWYeCxfOliGq1kV3ArNXdye55cKWZF7s9M9nDdt4,1324
6
- PyStellarDB-0.13.4.dist-info/LICENSE,sha256=1qDFxrywejs7xNBfOr6T-7lOuqDgSNIES77kTYege3w,560
7
- PyStellarDB-0.13.4.dist-info/METADATA,sha256=TNiFpy7JHomMKzYSf_8W3A1_VfDwjL0-444JsNYccWE,9390
8
- PyStellarDB-0.13.4.dist-info/WHEEL,sha256=_4XEmVmaBFWtekSGrbfOGNjC2I5lUr0lZSRblBllIFA,109
9
- PyStellarDB-0.13.4.dist-info/top_level.txt,sha256=DRk-SeGVCdVAzv2CwFmdu75Yo7DgjUA3Hpu-9l8qPuU,12
10
- PyStellarDB-0.13.4.dist-info/RECORD,,