From e7aa75b7baeaeec873ad1cef1dda2e18f19fceb1 Mon Sep 17 00:00:00 2001 From: smolkik-code Date: Sun, 5 Jul 2026 19:03:16 +0700 Subject: [PATCH] fix: add python-multipart dependency for Form data handling --- pyproject.toml | 1 + requirements.txt | 1 + 2 files changed, 2 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 3899df6..74779a6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,6 +21,7 @@ dependencies = [ "python-jose[cryptography]>=3.3.0", "loguru>=0.7.0", "jinja2>=3.1.0,<3.14", + "python-multipart>=0.0.9", ] [project.optional-dependencies] diff --git a/requirements.txt b/requirements.txt index 863244a..9afa701 100644 --- a/requirements.txt +++ b/requirements.txt @@ -13,3 +13,4 @@ httpx>=0.27.0 python-jose[cryptography]>=3.3.0 loguru>=0.7.0 jinja2>=3.1.0,<3.14 +python-multipart>=0.0.9