ormsgpack 1.5.0__cp310-none-win_amd64.whl → 1.6.0__cp310-none-win_amd64.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.
Potentially problematic release.
This version of ormsgpack might be problematic. Click here for more details.
- ormsgpack/__init__.pyi +4 -1
- ormsgpack/ormsgpack.cp310-win_amd64.pyd +0 -0
- {ormsgpack-1.5.0.dist-info → ormsgpack-1.6.0.dist-info}/METADATA +4 -2
- ormsgpack-1.6.0.dist-info/RECORD +9 -0
- {ormsgpack-1.5.0.dist-info → ormsgpack-1.6.0.dist-info}/WHEEL +1 -1
- ormsgpack-1.5.0.dist-info/RECORD +0 -9
- {ormsgpack-1.5.0.dist-info/license_files → ormsgpack-1.6.0.dist-info/licenses}/LICENSE-APACHE +0 -0
- {ormsgpack-1.5.0.dist-info/license_files → ormsgpack-1.6.0.dist-info/licenses}/LICENSE-MIT +0 -0
ormsgpack/__init__.pyi
CHANGED
|
@@ -8,7 +8,7 @@ def packb(
|
|
|
8
8
|
option: Optional[int] = None,
|
|
9
9
|
) -> bytes: ...
|
|
10
10
|
def unpackb(
|
|
11
|
-
|
|
11
|
+
obj: Union[bytes, bytearray, memoryview],
|
|
12
12
|
ext_hook: Optional[Callable[[int, bytes], Any]] = ...,
|
|
13
13
|
option: Optional[int] = ...,
|
|
14
14
|
) -> Any: ...
|
|
@@ -16,6 +16,9 @@ def unpackb(
|
|
|
16
16
|
class MsgpackDecodeError(ValueError): ...
|
|
17
17
|
class MsgpackEncodeError(TypeError): ...
|
|
18
18
|
|
|
19
|
+
class Ext:
|
|
20
|
+
def __init__(self, tag: int, data: bytes) -> None: ...
|
|
21
|
+
|
|
19
22
|
OPT_NAIVE_UTC: int
|
|
20
23
|
OPT_OMIT_MICROSECONDS: int
|
|
21
24
|
OPT_PASSTHROUGH_BIG_INT: int
|
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: ormsgpack
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.6.0
|
|
4
4
|
Classifier: Development Status :: 5 - Production/Stable
|
|
5
5
|
Classifier: Intended Audience :: Developers
|
|
6
6
|
Classifier: License :: OSI Approved :: Apache Software License
|
|
@@ -14,6 +14,7 @@ Classifier: Programming Language :: Python :: 3.9
|
|
|
14
14
|
Classifier: Programming Language :: Python :: 3.10
|
|
15
15
|
Classifier: Programming Language :: Python :: 3.11
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.12
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
17
18
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
18
19
|
Classifier: Programming Language :: Python
|
|
19
20
|
Classifier: Programming Language :: Rust
|
|
@@ -52,7 +53,8 @@ e.g., "1970-01-01T00:00:00+00:00"
|
|
|
52
53
|
* serializes `pydantic.BaseModel` instances natively
|
|
53
54
|
* serializes arbitrary types using a `default` hook
|
|
54
55
|
|
|
55
|
-
ormsgpack supports CPython 3.8, 3.9, 3.10, 3.11
|
|
56
|
+
ormsgpack supports CPython 3.8, 3.9, 3.10, 3.11, 3.12 and 3.13.
|
|
57
|
+
ormsgpack does not support PyPy. Releases follow semantic
|
|
56
58
|
versioning and serializing a new object type without an opt-in flag is
|
|
57
59
|
considered a breaking change.
|
|
58
60
|
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
ormsgpack-1.6.0.dist-info/METADATA,sha256=ISxhFpS4JtV7ICyf9FxDHVBb9pWYEu-zdhyFk3MemoY,44861
|
|
2
|
+
ormsgpack-1.6.0.dist-info/WHEEL,sha256=g5HWqh_ET1t00jeNp7yG4_MnCmGwbeYGzUw6BhdEuM0,95
|
|
3
|
+
ormsgpack-1.6.0.dist-info/licenses/LICENSE-APACHE,sha256=fP1zjFPWHHnwfjSPYiv3cHyQhCNwVNN_vgd4inX1iBw,11048
|
|
4
|
+
ormsgpack-1.6.0.dist-info/licenses/LICENSE-MIT,sha256=NlFq79yExdWh50hUJZE6ItvaaesZMMXoTWrklytRlLk,1046
|
|
5
|
+
ormsgpack/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
|
+
ormsgpack/__init__.py,sha256=cO7CRlLMoqVgapEc5lz2nE0SNNuvi659IAbl0fYU4_Q,969
|
|
7
|
+
ormsgpack/__init__.pyi,sha256=ifO6bsEVSuexKoxAF37hhZperoUVIyT6it2NLq79fa8,851
|
|
8
|
+
ormsgpack/ormsgpack.cp310-win_amd64.pyd,sha256=ycC2WWGXqt2rLiAmqTvfap-KiIK4RC7OO_5ENNxZhYw,291840
|
|
9
|
+
ormsgpack-1.6.0.dist-info/RECORD,,
|
ormsgpack-1.5.0.dist-info/RECORD
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
ormsgpack-1.5.0.dist-info/METADATA,sha256=KzJsbOVJn139IMkgpmb4bJyNZHBQrgrQNxo_E5QLQww,44803
|
|
2
|
-
ormsgpack-1.5.0.dist-info/WHEEL,sha256=5HyBAIXy6w_lmX9AQnFspp6An6SPZJwRKkYM1H8iHP0,95
|
|
3
|
-
ormsgpack-1.5.0.dist-info/license_files/LICENSE-APACHE,sha256=fP1zjFPWHHnwfjSPYiv3cHyQhCNwVNN_vgd4inX1iBw,11048
|
|
4
|
-
ormsgpack-1.5.0.dist-info/license_files/LICENSE-MIT,sha256=NlFq79yExdWh50hUJZE6ItvaaesZMMXoTWrklytRlLk,1046
|
|
5
|
-
ormsgpack/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
|
-
ormsgpack/__init__.py,sha256=cO7CRlLMoqVgapEc5lz2nE0SNNuvi659IAbl0fYU4_Q,969
|
|
7
|
-
ormsgpack/__init__.pyi,sha256=vVfpvAXniV3FAfa546Ni7ZjwYfb4l0OevDCkK2SH9CQ,784
|
|
8
|
-
ormsgpack/ormsgpack.cp310-win_amd64.pyd,sha256=JJPglBBVgcDkw7nsxXfXpsqmt4C_DCJgCca1bYNQZAs,291840
|
|
9
|
-
ormsgpack-1.5.0.dist-info/RECORD,,
|
{ormsgpack-1.5.0.dist-info/license_files → ormsgpack-1.6.0.dist-info/licenses}/LICENSE-APACHE
RENAMED
|
File without changes
|
|
File without changes
|