File: importlib_metadata.patch

package info (click to toggle)
reprozip 1.3.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 488 kB
  • sloc: ansic: 2,801; python: 2,733; sh: 20; makefile: 11
file content (21 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
--- a/reprozip/tracer/trace.py
+++ b/reprozip/tracer/trace.py
@@ -14,7 +14,7 @@
 import contextlib
 import distro
 from collections import defaultdict
-from importlib_metadata import entry_points
+from importlib.metadata import entry_points
 from itertools import count
 import logging
 import os
--- a/setup.py
+++ b/setup.py
@@ -36,7 +36,6 @@
 with io.open('README.rst', encoding='utf-8') as fp:
     description = fp.read()
 req = [
-    'importlib-metadata',
     'PyYAML',
     'rpaths>=0.8',
     'usagestats>=0.3',