From 3a73059531ec6567c6baaa460be28e950b42ee99 Mon Sep 17 00:00:00 2001 From: 18alantom <2.alan.tom@gmail.com> Date: Wed, 21 Feb 2024 16:55:35 +0530 Subject: [PATCH] fix(build): pin hatchling version to prevent import error reference: https://github.com/pypa/hatch/pull/1255 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index af7d0eaf..9cbebb4b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -44,7 +44,7 @@ Source = "https://github.com/frappe/bench" [build-system] requires = [ - "hatchling>=1.6.0", + "hatchling>=1.6.0,<1.9.4", ] build-backend = "hatchling.build"