File: replace-distutils-with-setuptools.patch

package info (click to toggle)
python-pyvcf 0.6.8%2Bgit20170215.476169c-12
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,872 kB
  • sloc: python: 2,921; makefile: 126
file content (10 lines) | stat: -rw-r--r-- 302 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
Description: use setuptools instead of deprecated distutils
Author: Ananthu C V <weepingclown@debian.org>
Last-Update: 2024-11-26
--- a/setup.py
+++ b/setup.py
@@ -1,3 +1,2 @@
-from setuptools import setup
-from distutils.extension import Extension
+from setuptools import setup, Extension
 import sys