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 <me@akhilnarang.dev>
This commit is contained in:
Akhil Narang 2026-02-05 16:46:38 +05:30 committed by GitHub
parent c9cdacb4ce
commit 95fbf02ed7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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"