From 7c4fc8804854662acb9a821ffba4faf08bc9d79e Mon Sep 17 00:00:00 2001 From: Tobias Schmidt <39538005+TobiasSchmidtDE@users.noreply.github.com> Date: Mon, 9 Feb 2026 16:42:06 +0100 Subject: [PATCH] Fix cebra setuptools dependency --- pyproject.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index a44f7d3..f8063f9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -46,7 +46,10 @@ dev = [ "pytest-cov>=2.0", "pre-commit>=3.0", "cebra>=0.4.0", - "ruff" + "ruff", + # Cebra requires pkg_resources, which is part of setuptools. + # However, setuptools is not always installed by default anymore, so we need it here + "setuptools", ] docs = [ "matplotlib",