File: reorder.patch

package info (click to toggle)
sorted-nearest 0.0.41%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 328 kB
  • sloc: python: 214; sh: 20; makefile: 8
file content (13 lines) | stat: -rw-r--r-- 391 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
Description: import setuptools before anything else, let setuptools do its magic before-hand
 Thanks to https://stackoverflow.com/a/65711633
Author: Nilesh Patra <nilesh@debian.org>
Last-Update: 2022-10-23
--- a/setup.py
+++ b/setup.py
@@ -1,5 +1,5 @@
-from distutils.core import setup
 from setuptools import Extension
+from distutils.core import setup
 import sys
 
 def get_extensions():