File: remove_distutils

package info (click to toggle)
python-pandocfilters 1.5.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 376 kB
  • sloc: python: 802; makefile: 26
file content (17 lines) | stat: -rw-r--r-- 474 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Description: Remove dependency on distutils
 For Python 3.12, distutils has been removed. Therefore, we remove the
 dependency on it.
Author: Sebastian Humenda <shumenda@gmx.de>
Last-Update: 2024-03-18

Index: pandocfilters/setup.py
===================================================================
--- pandocfilters.orig/setup.py
+++ pandocfilters/setup.py
@@ -1,5 +1,5 @@
 import setuptools
-from distutils.core import setup
+from setuptools import setup
 import os