1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
From: Antonio Valentino <antonio.valentino@tiscali.it>
Date: Sun, 11 Jun 2023 10:27:41 +0000
Subject: Do not use the deprecated distutils
Forwarded: not-needed
---
setup.py | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/setup.py b/setup.py
index e001a8a..6e54482 100644
--- a/setup.py
+++ b/setup.py
@@ -1,4 +1,5 @@
-from distutils.core import setup
+# from distutils.core import setup
+from setuptools import setup
import skyfield # safe, because __init__.py contains no import statements
|