diff hgext/narrow/narrowrepo.py @ 36089:e14821b290eb

narrowrepo: make repo requirement include the string 'experimental' We can just move to "narrow" or similar when we finalize the format. I'm not sure what the migration process from one requirement to another should look like, but we're about to cross that bridge at Google once this change lands, so hopefully we'll know soon. Differential Revision: https://phab.mercurial-scm.org/D2007
author Augie Fackler <augie@google.com>
date Fri, 02 Feb 2018 10:28:57 -0500
parents 8c31187b6717
children 879da36e7644
line wrap: on
line diff
--- a/hgext/narrow/narrowrepo.py	Fri Feb 02 10:27:08 2018 -0500
+++ b/hgext/narrow/narrowrepo.py	Fri Feb 02 10:28:57 2018 -0500
@@ -23,7 +23,9 @@
     narrowspec,
 )
 
-REQUIREMENT = 'narrowhg'
+# When narrowing is finalized and no longer subject to format changes,
+# we should move this to just "narrow" or similar.
+REQUIREMENT = 'narrowhg-experimental'
 
 def wrappostshare(orig, sourcerepo, destrepo, **kwargs):
     orig(sourcerepo, destrepo, **kwargs)