summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python/path-py/files/path-py-12.0.2-py38.patch')
-rw-r--r--dev-python/path-py/files/path-py-12.0.2-py38.patch19
1 files changed, 19 insertions, 0 deletions
diff --git a/dev-python/path-py/files/path-py-12.0.2-py38.patch b/dev-python/path-py/files/path-py-12.0.2-py38.patch
new file mode 100644
index 000000000000..292b0454acc1
--- /dev/null
+++ b/dev-python/path-py/files/path-py-12.0.2-py38.patch
@@ -0,0 +1,19 @@
+diff -ur path.py-12.0.2.orig/path/__init__.py path.py-12.0.2/path/__init__.py
+--- path.py-12.0.2.orig/path/__init__.py 2019-11-20 17:17:03.644205243 -0800
++++ path.py-12.0.2/path/__init__.py 2019-11-20 17:17:57.356875924 -0800
+@@ -72,7 +72,13 @@
+
+ __version__ = importlib_metadata.version('path.py')
+ except Exception:
+- __version__ = 'unknown'
++ try:
++ import importlib.metadata
++
++ __version__ = importlib.metadata.version('path.py')
++
++ except Exception:
++ __version__ = 'unknown'
+
+
+ class TreeWalkWarning(Warning):
+Only in path.py-12.0.2/path: .__init__.py.un~