From 82a1717052cc0fa0a9110249a24cd4d7b7069ef7 Mon Sep 17 00:00:00 2001 From: Fabio Ambauen Date: Thu, 12 Sep 2024 09:51:20 +0200 Subject: [PATCH] chore(api): add missing setuptools for django-excel --- api/poetry.lock | 22 +++++++++++++++++++++- api/pyproject.toml | 1 + 2 files changed, 22 insertions(+), 1 deletion(-) diff --git a/api/poetry.lock b/api/poetry.lock index 5380f2ee..7d2ae808 100644 --- a/api/poetry.lock +++ b/api/poetry.lock @@ -1733,6 +1733,26 @@ files = [ {file = "ruff-0.5.6.tar.gz", hash = "sha256:07c9e3c2a8e1fe377dd460371c3462671a728c981c3205a5217291422209f642"}, ] +[[package]] +name = "setuptools" +version = "74.1.2" +description = "Easily download, build, install, upgrade, and uninstall Python packages" +optional = false +python-versions = ">=3.8" +files = [ + {file = "setuptools-74.1.2-py3-none-any.whl", hash = "sha256:5f4c08aa4d3ebcb57a50c33b1b07e94315d7fc7230f7115e47fc99776c8ce308"}, + {file = "setuptools-74.1.2.tar.gz", hash = "sha256:95b40ed940a1c67eb70fc099094bd6e99c6ee7c23aa2306f4d2697ba7916f9c6"}, +] + +[package.extras] +check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.text (>=3.7)", "more-itertools (>=8.8)", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +cover = ["pytest-cov"] +doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] +enabler = ["pytest-enabler (>=2.2)"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] + [[package]] name = "sh" version = "1.14.3" @@ -1910,4 +1930,4 @@ test = ["big-O", "importlib-resources", "jaraco.functools", "jaraco.itertools", [metadata] lock-version = "2.0" python-versions = "^3.9" -content-hash = "ae979d43fbe74b4f69c616d4686c689a9a58625c41bb0eb88a339d3ee63d6a0b" +content-hash = "d055fdc29701193c6d0b5ebb080a1ac5da41be09837fba69cea56e12e720919d" diff --git a/api/pyproject.toml b/api/pyproject.toml index b2643132..f8c99718 100644 --- a/api/pyproject.toml +++ b/api/pyproject.toml @@ -30,6 +30,7 @@ pyexcel-xlsx = "^0.6.0" pypdf = "^4.1.0" requests = "^2.32.2" reportlab = "^4.1.0" +setuptools = "^74.1.2" # needed fopr django-excel [tool.poetry.group.dev.dependencies] django-extensions = "^3.2.3"