From cf332a3e80d4d676cd91ac2edcde2b92c16e09e9 Mon Sep 17 00:00:00 2001 From: 9c Pluss <96419872+9cpluss@users.noreply.github.com> Date: Tue, 28 Apr 2026 09:54:45 +0200 Subject: [PATCH] Add setuptools version constraint to dev-requirements Added setuptools version constraint for compatibility with mlflow because newer versions remove pkg_resources, which is required by mlflow --- dev-requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/dev-requirements.txt b/dev-requirements.txt index 736e3099..ce033ff4 100644 --- a/dev-requirements.txt +++ b/dev-requirements.txt @@ -1,3 +1,4 @@ pytest==7.4.4 pytest-black mlflow==2.11.3 +setuptools<=81.0.0 # newer versions remove pkg_resources, which is required by mlflow