From d8bac7db65d26e69db3d7d08d2ce76d1b520faae Mon Sep 17 00:00:00 2001 From: mscherer Date: Wed, 6 Nov 2024 12:28:43 +0100 Subject: [PATCH] Remove slimit dependencies (#4609) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It doesn't work anymore on python 3.13, since 2to3 is deprecated and removed (PEP 594). Trying to build on Fedora 41 result in: Downloading slimit-0.8.1.zip (88 kB) Installing build dependencies: started Installing build dependencies: finished with status 'done' Getting requirements to build wheel: started Getting requirements to build wheel: finished with status 'error' error: subprocess-exited-with-error × Getting requirements to build wheel did not run successfully. │ exit code: 1 ╰─> [1 lines of output] Python 3.X support requires the 2to3 tool. [end of output] And slimit is not used in the code base nor anywhere in git (no single match) --- pyproject.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index eacbb56732..8e9202bdf9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -93,7 +93,6 @@ dependencies = [ "requests==2.31.*", "sentry-sdk==2.18.*", "sepaxml==2.6.*", - "slimit", "stripe==7.9.*", "text-unidecode==1.*", "tlds>=2020041600",