File: setuptools_compat.patch

package info (click to toggle)
libgpuarray 0.7.6-13
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 3,176 kB
  • sloc: ansic: 19,235; python: 4,591; makefile: 208; javascript: 71; sh: 15
file content (18 lines) | stat: -rw-r--r-- 381 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Description: Import setuptools before distutils

This is necessary because current setuptools replaces distutils

Author: Rebecca N. Palmer <rebecca_palmer@zoho.com>
Bug-Debian: https://bugs.debian.org/1022514
Forwarded: no

--- a/setup.py
+++ b/setup.py
@@ -1,6 +1,7 @@
 import sys
 import os
 import versioneer
+import setuptools
 import distutils.command.clean
 import shutil