From 38f48966c33aaaea67b7199b03445d3bfcd3d7d5 Mon Sep 17 00:00:00 2001 From: Stein Magnus Jodal Date: Tue, 25 Jun 2024 00:14:05 +0200 Subject: [PATCH] Add setuptools to provide distutils to django-bootstrap-form --- poetry.lock | 17 ++++++++++++++++- pyproject.toml | 1 + 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/poetry.lock b/poetry.lock index 5002e6da..076ace8b 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1742,6 +1742,21 @@ starlette = ["starlette (>=0.19.1)"] starlite = ["starlite (>=1.48)"] tornado = ["tornado (>=5)"] +[[package]] +name = "setuptools" +version = "70.1.0" +description = "Easily download, build, install, upgrade, and uninstall Python packages" +optional = false +python-versions = ">=3.8" +files = [ + {file = "setuptools-70.1.0-py3-none-any.whl", hash = "sha256:d9b8b771455a97c8a9f3ab3448ebe0b29b5e105f1228bba41028be116985a267"}, + {file = "setuptools-70.1.0.tar.gz", hash = "sha256:01a1e793faa5bd89abc851fa15d0a0db26f160890c7102cd8dce643e886b47f5"}, +] + +[package.extras] +docs = ["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"] +testing = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "importlib-metadata", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "mypy (==1.10.0)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.1)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-home (>=0.5)", "pytest-mypy", "pytest-perf", "pytest-ruff (>=0.3.2)", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel"] + [[package]] name = "sgmllib3k" version = "1.0.0" @@ -1914,4 +1929,4 @@ server = ["gunicorn"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "5a25d0e203183731206d9c695fb1df286146fabf8f9d5569635a7533b36af9a0" +content-hash = "4a2866c985efd23479f577ae5520e256c868a076ba8bdded97ad46b45723a04d" diff --git a/pyproject.toml b/pyproject.toml index ddb490a0..449ef0fb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,6 +29,7 @@ pymemcache = { version = "^4.0.0", optional = true } python = "^3.12" pytz = "^2024.1" sentry-sdk = "^2.6.0" +setuptools = "^70.1.0" [tool.poetry.dev-dependencies] black = "^22.8"