1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
Description: Use setuptools instead of distutils
distutils is deprecated and will soon be removed, use setuptools instead
so that it continues to work
.
python-netsnmpagent (0.6.0-1) unstable; urgency=low
.
* Initial release. (Closes: #932925)
Author: Salvo 'LtWorf' Tomaselli <ltworf@debian.org>
Bug-Debian: https://bugs.debian.org/932925
Last-Update: 2023-09-25
Forwarded: https://github.com/pief/python-netsnmpagent/pull/50
--- python-netsnmpagent-0.6.0.orig/setup.py
+++ python-netsnmpagent-0.6.0/setup.py
@@ -7,7 +7,7 @@
# Distutils setup script
#
-from distutils.core import setup
+from setuptools import setup
try:
import ctypes
|