From ec4fba16d6238013412e99f7db88367dc6cc4b5f Mon Sep 17 00:00:00 2001 From: Ethan Paul Date: Wed, 27 Oct 2021 22:00:52 -0400 Subject: [PATCH] Add netaddr to support ipaddress filters --- poetry.lock | 14 +++++++++++++- pyproject.toml | 1 + 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/poetry.lock b/poetry.lock index 17fb741..031c936 100644 --- a/poetry.lock +++ b/poetry.lock @@ -444,6 +444,14 @@ code_style = ["pre-commit (==2.6)"] rtd = ["myst-parser (==0.14.0a3)", "sphinx-book-theme (>=0.1.0,<0.2.0)"] testing = ["coverage", "pytest (>=3.6,<4)", "pytest-cov", "pytest-regressions"] +[[package]] +name = "netaddr" +version = "0.8.0" +description = "A network address manipulation library for Python" +category = "main" +optional = false +python-versions = "*" + [[package]] name = "nodeenv" version = "1.6.0" @@ -846,7 +854,7 @@ testing = ["pytest (>=4.6)", "pytest-checkdocs (>=2.4)", "pytest-flake8", "pytes [metadata] lock-version = "1.1" python-versions = "^3.8" -content-hash = "efb98f8ed668c7ae299859efbb9bc422f583e9d8676022b5e4bd1c8bf410fd71" +content-hash = "0535e10c3eb12b9b2bcb81b8a41d20da1bd9d704d0e60fd5e6bfb0f0b046bd38" [metadata.files] ansible = [ @@ -1079,6 +1087,10 @@ mdit-py-plugins = [ {file = "mdit-py-plugins-0.2.8.tar.gz", hash = "sha256:5991cef645502e80a5388ec4fc20885d2313d4871e8b8e320ca2de14ac0c015f"}, {file = "mdit_py_plugins-0.2.8-py3-none-any.whl", hash = "sha256:1833bf738e038e35d89cb3a07eb0d227ed647ce7dd357579b65343740c6d249c"}, ] +netaddr = [ + {file = "netaddr-0.8.0-py2.py3-none-any.whl", hash = "sha256:9666d0232c32d2656e5e5f8d735f58fd6c7457ce52fc21c98d45f2af78f990ac"}, + {file = "netaddr-0.8.0.tar.gz", hash = "sha256:d6cc57c7a07b1d9d2e917aa8b36ae8ce61c35ba3fcd1b83ca31c5a0ee2b5a243"}, +] nodeenv = [ {file = "nodeenv-1.6.0-py2.py3-none-any.whl", hash = "sha256:621e6b7076565ddcacd2db0294c0381e01fd28945ab36bcf00f41c5daf63bef7"}, {file = "nodeenv-1.6.0.tar.gz", hash = "sha256:3ef13ff90291ba2a4a7a4ff9a979b63ffdd00a464dbe04acf0ea6471517a4c2b"}, diff --git a/pyproject.toml b/pyproject.toml index cb36983..9c42c1a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,6 +12,7 @@ docker = "^4.2.0" docker-compose = "^1.25.4" paramiko = "^2.7.1" jsondiff = "^1.2.0" +netaddr = "^0.8.0" [tool.poetry.dev-dependencies] ansible-lint = "^4.2.0"