From d2bfba5c8b87d6a61683f29afdc7f1b9b708384e Mon Sep 17 00:00:00 2001 From: KimSia Sim <245021+simkimsia@users.noreply.github.com> Date: Mon, 6 Nov 2023 22:20:11 +0800 Subject: [PATCH] Update pyproject.toml to allow packaging < v24 fixed #27 27 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 304226b..3542e99 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,7 +15,7 @@ keywords = ["magic link", "authentication", "passwordless"] [tool.poetry.dependencies] python = "^3.6" Django = ">=2.1" -packaging = ">=20.9,<22.0" +packaging = ">=20.9,<24.0" [tool.poetry.dev-dependencies] flake8 = "^4.0.1"