msgpack-types 0.5.0__tar.gz → 0.7.0__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.
@@ -1,9 +1,9 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: msgpack-types
3
- Version: 0.5.0
3
+ Version: 0.7.0
4
4
  Summary: Type stubs for msgpack
5
- Home-page: https://github.com/sbdchd/msgpack-types
6
5
  License: Apache-2.0
6
+ License-File: LICENSE
7
7
  Keywords: msgpack,types,mypy,stubs
8
8
  Author: Steve Dignam
9
9
  Author-email: steve@dignam.xyz
@@ -15,6 +15,8 @@ Classifier: Programming Language :: Python :: 3.9
15
15
  Classifier: Programming Language :: Python :: 3.10
16
16
  Classifier: Programming Language :: Python :: 3.11
17
17
  Classifier: Programming Language :: Python :: 3.12
18
+ Classifier: Programming Language :: Python :: 3.13
19
+ Classifier: Programming Language :: Python :: 3.14
18
20
  Requires-Dist: msgpack (>=1.1.0,<1.2.0)
19
21
  Requires-Dist: typing-extensions (>=4.6.0)
20
22
  Project-URL: Repository, https://github.com/sbdchd/msgpack-types
@@ -24,13 +24,13 @@ version: tuple[int, int, int] = ...
24
24
  __version__: str = ...
25
25
 
26
26
  class _WriteStream(Protocol):
27
- def write(self, b: bytes) -> int: ...
27
+ def write(self, b: bytes, /) -> int: ...
28
28
 
29
29
  class _Stream(Protocol):
30
30
  def read(self) -> bytes: ...
31
31
 
32
32
  class _FileLike(Protocol):
33
- def read(self, n: int) -> bytes: ...
33
+ def read(self, n: int, /) -> bytes: ...
34
34
 
35
35
  def pack(
36
36
  o: Any,
@@ -6,7 +6,7 @@ from typing import Any
6
6
  from typing_extensions import Protocol, Buffer
7
7
 
8
8
  class _FileLike(Protocol):
9
- def read(self, n: int) -> bytes: ...
9
+ def read(self, n: int, /) -> bytes: ...
10
10
 
11
11
  def unpackb(
12
12
  packed: Buffer,
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "msgpack-types"
3
- version = "0.5.0"
3
+ version = "0.7.0"
4
4
  description = "Type stubs for msgpack"
5
5
  repository = "https://github.com/sbdchd/msgpack-types"
6
6
  readme = "README.md"
File without changes
File without changes