sop4py 2.0.1__tar.gz → 2.0.2__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.

Potentially problematic release.


This version of sop4py might be problematic. Click here for more details.

Files changed (27) hide show
  1. {sop4py-2.0.1/sop4py.egg-info → sop4py-2.0.2}/PKG-INFO +2 -1
  2. {sop4py-2.0.1 → sop4py-2.0.2}/README.md +2 -1
  3. {sop4py-2.0.1 → sop4py-2.0.2}/pyproject.toml +1 -1
  4. {sop4py-2.0.1 → sop4py-2.0.2/sop4py.egg-info}/PKG-INFO +2 -1
  5. {sop4py-2.0.1 → sop4py-2.0.2}/MANIFEST.in +0 -0
  6. {sop4py-2.0.1 → sop4py-2.0.2}/setup.cfg +0 -0
  7. {sop4py-2.0.1 → sop4py-2.0.2}/sop/__init__.py +0 -0
  8. {sop4py-2.0.1 → sop4py-2.0.2}/sop/btree.py +0 -0
  9. {sop4py-2.0.1 → sop4py-2.0.2}/sop/call_go.py +0 -0
  10. {sop4py-2.0.1 → sop4py-2.0.2}/sop/context.py +0 -0
  11. {sop4py-2.0.1 → sop4py-2.0.2}/sop/libjsondb_amd64darwin.dylib +0 -0
  12. {sop4py-2.0.1 → sop4py-2.0.2}/sop/libjsondb_amd64darwin.h +0 -0
  13. {sop4py-2.0.1 → sop4py-2.0.2}/sop/libjsondb_amd64linux.h +0 -0
  14. {sop4py-2.0.1 → sop4py-2.0.2}/sop/libjsondb_amd64linux.so +0 -0
  15. {sop4py-2.0.1 → sop4py-2.0.2}/sop/libjsondb_amd64windows.dll +0 -0
  16. {sop4py-2.0.1 → sop4py-2.0.2}/sop/libjsondb_amd64windows.h +0 -0
  17. {sop4py-2.0.1 → sop4py-2.0.2}/sop/libjsondb_arm64darwin.dylib +0 -0
  18. {sop4py-2.0.1 → sop4py-2.0.2}/sop/libjsondb_arm64darwin.h +0 -0
  19. {sop4py-2.0.1 → sop4py-2.0.2}/sop/libjsondb_arm64linux.h +0 -0
  20. {sop4py-2.0.1 → sop4py-2.0.2}/sop/libjsondb_arm64linux.so +0 -0
  21. {sop4py-2.0.1 → sop4py-2.0.2}/sop/redis.py +0 -0
  22. {sop4py-2.0.1 → sop4py-2.0.2}/sop/test_btree.py +0 -0
  23. {sop4py-2.0.1 → sop4py-2.0.2}/sop/test_btree_idx.py +0 -0
  24. {sop4py-2.0.1 → sop4py-2.0.2}/sop/transaction.py +0 -0
  25. {sop4py-2.0.1 → sop4py-2.0.2}/sop4py.egg-info/SOURCES.txt +0 -0
  26. {sop4py-2.0.1 → sop4py-2.0.2}/sop4py.egg-info/dependency_links.txt +0 -0
  27. {sop4py-2.0.1 → sop4py-2.0.2}/sop4py.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: sop4py
3
- Version: 2.0.1
3
+ Version: 2.0.2
4
4
  Summary: Scalable Objects Persistence for Python. Beta 3 Release
5
5
  Author-email: Gerardo Recinto <gerardorecinto@yahoo.com>
6
6
  Classifier: Programming Language :: Python :: 3
@@ -130,3 +130,4 @@ print("ended.")
130
130
  SOP open source project (MIT license) is in github. You can checkout the "...sop/jsondb/" package which contains the Go code enabling general purpose JSON data management & the Python wrapper, coding guideline of which, was described above.
131
131
 
132
132
  Please feel free to join the SOP project if you have the bandwidth and participate/co-own/lead! the project engineering.
133
+ SOP project link: https://github.com/sharedcode/sop
@@ -118,4 +118,5 @@ print("ended.")
118
118
  # SOP in Github
119
119
  SOP open source project (MIT license) is in github. You can checkout the "...sop/jsondb/" package which contains the Go code enabling general purpose JSON data management & the Python wrapper, coding guideline of which, was described above.
120
120
 
121
- Please feel free to join the SOP project if you have the bandwidth and participate/co-own/lead! the project engineering.
121
+ Please feel free to join the SOP project if you have the bandwidth and participate/co-own/lead! the project engineering.
122
+ SOP project link: https://github.com/sharedcode/sop
@@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"
7
7
 
8
8
  [project]
9
9
  name = "sop4py"
10
- version = "2.0.1"
10
+ version = "2.0.2"
11
11
  authors = [
12
12
  { name="Gerardo Recinto", email="gerardorecinto@yahoo.com" },
13
13
  ]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: sop4py
3
- Version: 2.0.1
3
+ Version: 2.0.2
4
4
  Summary: Scalable Objects Persistence for Python. Beta 3 Release
5
5
  Author-email: Gerardo Recinto <gerardorecinto@yahoo.com>
6
6
  Classifier: Programming Language :: Python :: 3
@@ -130,3 +130,4 @@ print("ended.")
130
130
  SOP open source project (MIT license) is in github. You can checkout the "...sop/jsondb/" package which contains the Go code enabling general purpose JSON data management & the Python wrapper, coding guideline of which, was described above.
131
131
 
132
132
  Please feel free to join the SOP project if you have the bandwidth and participate/co-own/lead! the project engineering.
133
+ SOP project link: https://github.com/sharedcode/sop
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes