SHA256
3
0
forked from pool/meson
meson/meson-distutils.patch

26 lines
752 B
Diff

From 9e4c764df222328348f9b245b3b8480c243e4516 Mon Sep 17 00:00:00 2001
From: sp1rit <sp1ritCS@protonmail.com>
Date: Wed, 14 Apr 2021 14:35:17 +0200
Subject: [PATCH] setup.py: use distutils instead of full setuptools
---
setup.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/setup.py b/setup.py
index 17a00b34d..2a2599ee1 100644
--- a/setup.py
+++ b/setup.py
@@ -21,7 +21,7 @@ if sys.version_info < (3, 6):
'\nMeson requires Python 3.6.0 or greater'.format(sys.version))
from mesonbuild.coredata import version
-from setuptools import setup
+from distutils.core import setup
# On windows, will create Scripts/meson.exe and Scripts/meson-script.py
# Other platforms will create bin/meson
--
2.31.1