Skip to content

Commit ef94b9e

Browse files
[stubsabot] Bump netaddr to 1.1.* (#11424)
Co-authored-by: stubsabot <> Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com>
1 parent 65c154f commit ef94b9e

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

stubs/netaddr/METADATA.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
version = "1.0.*"
1+
version = "1.1.*"
22
upstream_repository = "https://github.com/drkjam/netaddr"

stubs/netaddr/netaddr/__init__.pyi

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ from netaddr.strategy.eui64 import (
5353
eui64_unix_expanded as eui64_unix_expanded,
5454
valid_str as valid_eui64,
5555
)
56-
from netaddr.strategy.ipv4 import valid_str as valid_ipv4
56+
from netaddr.strategy.ipv4 import expand_partial_address as expand_partial_ipv4_address, valid_str as valid_ipv4
5757
from netaddr.strategy.ipv6 import (
5858
ipv6_compact as ipv6_compact,
5959
ipv6_full as ipv6_full,
@@ -116,6 +116,7 @@ __all__ = [
116116
"eui64_bare",
117117
"valid_eui64",
118118
"SubnetSplitter",
119+
"expand_partial_ipv4_address",
119120
]
120121

121122
__version__: str

stubs/netaddr/netaddr/cli.pyi

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1-
from netaddr import *
1+
from typing import Any
2+
3+
SHELL_NAMESPACE: dict[str, Any]
4+
ASCII_ART_LOGO: str
25

36
def main() -> None: ...

0 commit comments

Comments
 (0)