summaryrefslogtreecommitdiff
path: root/dev-python/path-py/files/path-py-12.0.2-py38.patch
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, 0 insertions, 19 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
deleted file mode 100644
index 292b0454acc1..000000000000
--- a/dev-python/path-py/files/path-py-12.0.2-py38.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-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~