From d2869e00e2dbc24375b54ff4730e38c48d7aafc5 Mon Sep 17 00:00:00 2001 From: cortadocodes Date: Mon, 16 Dec 2024 12:17:24 +0000 Subject: [PATCH] DEP: Add `pydash` dependency --- poetry.lock | 19 ++++++++++++++++++- pyproject.toml | 1 + 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/poetry.lock b/poetry.lock index 7db364ed6..a7de3f187 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1699,6 +1699,23 @@ files = [ [package.dependencies] pyasn1 = ">=0.4.6,<0.7.0" +[[package]] +name = "pydash" +version = "8.0.4" +description = "The kitchen sink of Python utility libraries for doing \"stuff\" in a functional way. Based on the Lo-Dash Javascript library." +optional = false +python-versions = ">=3.8" +files = [ + {file = "pydash-8.0.4-py3-none-any.whl", hash = "sha256:59d0c9ca0d22b4f8bcfab01bfe2e89b49f4c9e9fa75961caf156094670260999"}, + {file = "pydash-8.0.4.tar.gz", hash = "sha256:a33fb17b4b06c617da5c57c711605d2dc8723311ee5388c8371f87cd44bf4112"}, +] + +[package.dependencies] +typing-extensions = ">3.10,<4.6.0 || >4.6.0" + +[package.extras] +dev = ["build", "coverage", "furo", "invoke", "mypy", "pytest", "pytest-cov", "pytest-mypy-testing", "ruff", "sphinx", "sphinx-autodoc-typehints", "tox", "twine", "wheel"] + [[package]] name = "pygments" version = "2.18.0" @@ -2818,4 +2835,4 @@ hdf5 = ["h5py"] [metadata] lock-version = "2.0" python-versions = "^3.8" -content-hash = "fdaa867afc9e4a584d6a5853905e58c8693069bf1cf055ce741c0a2bb996e0f9" +content-hash = "5539fa069affa26830f3a929dd3d0ae97af9ccad05b0a434466f415ca7c9c6a3" diff --git a/pyproject.toml b/pyproject.toml index 38c6fb8f0..3d8d649c3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -37,6 +37,7 @@ h5py = { version = "^3.6", optional = true } twined = "0.6.0" packaging = ">=20.4" google-cloud-bigquery = "^3.18.0" +pydash = "^8.0.4" [tool.poetry.extras] hdf5 = ["h5py"]