1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
Description: move away from distutils.
Per lintian informational note, code that imports distutils will no longer
work from Python 3.12, so use setuptools instead.
Author: Étienne Mollier <emollier@debian.org>
Forwarded: https://github.com/babinyurii/recan/pull/20
Last-Update: 2023-06-25
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- recan.orig/setup.py
+++ recan/setup.py
@@ -1,6 +1,6 @@
from os import path
-from distutils.core import setup
import setuptools
+from setuptools import setup
this_directory = path.abspath(path.dirname(__file__))
|