From 95fbf02ed7bf38a481a7ab7abd916323cb6ab120 Mon Sep 17 00:00:00 2001 From: Akhil Narang Date: Thu, 5 Feb 2026 16:46:38 +0530 Subject: [PATCH] build(deps): move faker out of dev dependencies (#36747) `frappe.mock()` uses it. Although that's used only in tests, its defined under frappe namespace, so should be accessible without development dependencies. Signed-off-by: Akhil Narang --- pyproject.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 05e675cc78..1486da9b18 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -37,6 +37,7 @@ dependencies = [ "cryptography~=46.0.3", "cssutils~=2.11.1", "email-reply-parser~=0.5.12", + "Faker~=18.10.1", "gunicorn @ git+https://github.com/frappe/gunicorn@bb554053bb87218120d76ab6676af7015680e8b6", "html5lib~=1.1", "ipython~=8.37.0", @@ -127,7 +128,6 @@ dev = [ test = [ "unittest-xml-reporting~=3.2.0", "coverage~=7.10.0", - "Faker~=18.10.1", "hypothesis~=6.77.0", "freezegun~=1.5.1", ] @@ -145,7 +145,6 @@ skip_namespaces = [ [tool.bench.dev-dependencies] coverage = "~=7.10.0" -Faker = "~=18.10.1" pyngrok = "~=7.5.0" unittest-xml-reporting = "~=3.2.0" watchdog = "~=6.0.0"