From 4bfda4f828f95301093850323ed18c3f63878ede Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Mon, 15 May 2023 11:33:31 +0200 Subject: [PATCH] build: add django to setup_requires (#77586) --- setup.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup.py b/setup.py index 916012f..84dba3e 100644 --- a/setup.py +++ b/setup.py @@ -129,6 +129,9 @@ setup( 'django', 'requests', ], + setup_requires=[ + 'django', + ], zip_safe=False, cmdclass={ 'build': build,