From 595b110d05816c6f182d6d80bfe257498315c804 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fl=C3=A1vio=20Juvenal?= Date: Tue, 19 Dec 2023 10:48:19 -0300 Subject: [PATCH] Fix VERSION in setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 5fab641e..66fd363c 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ def rel(*parts): INIT_PY = handler.read() -VERSION = re.findall("__version__ = '([^']+)'", INIT_PY)[0] +VERSION = re.findall(r"__version__ = \"([^\"]+)\"", INIT_PY)[0] setup( name="django-webpack-loader",