1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
Author: Andreas Tille <tille@debian.org>
Last-Update: Mon, 14 Nov 2022 14:05:55 +0100
Description: Fix sequence of setuptools - distutils calls
Bug-Debian: https://bugs.debian.org/1024038
--- a/setup.py
+++ b/setup.py
@@ -1,10 +1,10 @@
#!/usr/bin/python3
+from setuptools import setup
from distutils.command.build import build as _build
from distutils.errors import CompileError
from distutils import sysconfig
-from setuptools import setup
import os, re, sys
from glob import glob
|