sop4py 2.0.4__tar.gz → 2.0.5__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.4/sop4py.egg-info → sop4py-2.0.5}/PKG-INFO +1 -1
  2. {sop4py-2.0.4 → sop4py-2.0.5}/pyproject.toml +1 -1
  3. {sop4py-2.0.4 → sop4py-2.0.5}/sop/test_btree.py +4 -4
  4. {sop4py-2.0.4 → sop4py-2.0.5}/sop/test_btree_idx.py +5 -5
  5. {sop4py-2.0.4 → sop4py-2.0.5/sop4py.egg-info}/PKG-INFO +1 -1
  6. {sop4py-2.0.4 → sop4py-2.0.5}/MANIFEST.in +0 -0
  7. {sop4py-2.0.4 → sop4py-2.0.5}/README.md +0 -0
  8. {sop4py-2.0.4 → sop4py-2.0.5}/setup.cfg +0 -0
  9. {sop4py-2.0.4 → sop4py-2.0.5}/sop/__init__.py +0 -0
  10. {sop4py-2.0.4 → sop4py-2.0.5}/sop/btree.py +0 -0
  11. {sop4py-2.0.4 → sop4py-2.0.5}/sop/call_go.py +0 -0
  12. {sop4py-2.0.4 → sop4py-2.0.5}/sop/context.py +0 -0
  13. {sop4py-2.0.4 → sop4py-2.0.5}/sop/libjsondb_amd64darwin.dylib +0 -0
  14. {sop4py-2.0.4 → sop4py-2.0.5}/sop/libjsondb_amd64darwin.h +0 -0
  15. {sop4py-2.0.4 → sop4py-2.0.5}/sop/libjsondb_amd64linux.h +0 -0
  16. {sop4py-2.0.4 → sop4py-2.0.5}/sop/libjsondb_amd64linux.so +0 -0
  17. {sop4py-2.0.4 → sop4py-2.0.5}/sop/libjsondb_amd64windows.dll +0 -0
  18. {sop4py-2.0.4 → sop4py-2.0.5}/sop/libjsondb_amd64windows.h +0 -0
  19. {sop4py-2.0.4 → sop4py-2.0.5}/sop/libjsondb_arm64darwin.dylib +0 -0
  20. {sop4py-2.0.4 → sop4py-2.0.5}/sop/libjsondb_arm64darwin.h +0 -0
  21. {sop4py-2.0.4 → sop4py-2.0.5}/sop/libjsondb_arm64linux.h +0 -0
  22. {sop4py-2.0.4 → sop4py-2.0.5}/sop/libjsondb_arm64linux.so +0 -0
  23. {sop4py-2.0.4 → sop4py-2.0.5}/sop/redis.py +0 -0
  24. {sop4py-2.0.4 → sop4py-2.0.5}/sop/transaction.py +0 -0
  25. {sop4py-2.0.4 → sop4py-2.0.5}/sop4py.egg-info/SOURCES.txt +0 -0
  26. {sop4py-2.0.4 → sop4py-2.0.5}/sop4py.egg-info/dependency_links.txt +0 -0
  27. {sop4py-2.0.4 → sop4py-2.0.5}/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.4
3
+ Version: 2.0.5
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
@@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"
7
7
 
8
8
  [project]
9
9
  name = "sop4py"
10
- version = "2.0.4"
10
+ version = "2.0.5"
11
11
  authors = [
12
12
  { name="Gerardo Recinto", email="gerardorecinto@yahoo.com" },
13
13
  ]
@@ -1,11 +1,11 @@
1
1
  import pytest
2
2
  import unittest
3
- import transaction
4
- import btree
5
- import context
3
+ from . import transaction
4
+ from . import btree
5
+ from . import context
6
6
 
7
7
  from datetime import timedelta
8
- from redis import *
8
+ from .redis import *
9
9
 
10
10
  from dataclasses import dataclass
11
11
 
@@ -1,10 +1,10 @@
1
1
  import unittest
2
- import transaction
3
- import btree
4
- import context
2
+ from . import transaction
3
+ from . import btree
4
+ from . import context
5
5
 
6
- from redis import *
7
- from test_btree import to
6
+ from .redis import *
7
+ from .test_btree import to
8
8
 
9
9
  from dataclasses import dataclass
10
10
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: sop4py
3
- Version: 2.0.4
3
+ Version: 2.0.5
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
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