changeset 5805:bb0e53bb5c67

evolve: remove hg 3.8 check We no longer support 3.8.
author Anton Shestakov <av6@dwimlabs.net>
date Sat, 27 Feb 2021 18:02:03 +0800
parents a5fdfe3ef09f
children 1ac158fae24e
files hgext3rd/evolve/__init__.py
diffstat 1 files changed, 0 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- a/hgext3rd/evolve/__init__.py	Sat Feb 27 12:04:24 2021 +0100
+++ b/hgext3rd/evolve/__init__.py	Sat Feb 27 18:02:03 2021 +0800
@@ -258,14 +258,6 @@
 
 import sys
 
-try:
-    from mercurial import registrar
-    registrar.templatekeyword # new in hg-3.8
-except ImportError:
-    from . import metadata
-    raise ImportError(b'evolve needs Mercurial version %s or above' %
-                      min(metadata.testedwith.split()))
-
 import mercurial
 from mercurial import util