[stubsabot] Bump netaddr to 1.1.* (#11424)

Co-authored-by: stubsabot <>
Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com>
This commit is contained in:
github-actions[bot]
2024-02-17 12:51:40 +00:00
committed by GitHub
parent 65c154f5ff
commit ef94b9ee04
3 changed files with 7 additions and 3 deletions

View File

@@ -1,2 +1,2 @@
version = "1.0.*"
version = "1.1.*"
upstream_repository = "https://github.com/drkjam/netaddr"

View File

@@ -53,7 +53,7 @@ from netaddr.strategy.eui64 import (
eui64_unix_expanded as eui64_unix_expanded,
valid_str as valid_eui64,
)
from netaddr.strategy.ipv4 import valid_str as valid_ipv4
from netaddr.strategy.ipv4 import expand_partial_address as expand_partial_ipv4_address, valid_str as valid_ipv4
from netaddr.strategy.ipv6 import (
ipv6_compact as ipv6_compact,
ipv6_full as ipv6_full,
@@ -116,6 +116,7 @@ __all__ = [
"eui64_bare",
"valid_eui64",
"SubnetSplitter",
"expand_partial_ipv4_address",
]
__version__: str

View File

@@ -1,3 +1,6 @@
from netaddr import *
from typing import Any
SHELL_NAMESPACE: dict[str, Any]
ASCII_ART_LOGO: str
def main() -> None: ...