File: 0003-Do-not-use-the-deprecated-distutils.patch

package info (click to toggle)
skyfield 1.53%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,688 kB
  • sloc: python: 14,800; makefile: 278; sh: 41
file content (20 lines) | stat: -rw-r--r-- 521 bytes parent folder | download | duplicates (2)
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