File: drop-distutils.patch

package info (click to toggle)
python-ruffus 2.8.4-8
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 16,492 kB
  • sloc: python: 17,613; makefile: 213; sh: 18
file content (23 lines) | stat: -rw-r--r-- 522 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
From: Ananthu C V <weepingclown@debian.org>
Date: Sun, 8 Mar 2026 11:17:36 +0100
Subject: drop usage of deprecated distuils module

Last-Update: 2024-12-05
---
 ez_setup.py | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/ez_setup.py b/ez_setup.py
index 5428375..673acde 100755
--- a/ez_setup.py
+++ b/ez_setup.py
@@ -17,8 +17,7 @@ import platform
 import textwrap
 import contextlib
 import warnings
-
-from distutils import log
+import logging as log
 
 try:
     from urllib.request import urlopen