serverlog: only mark as compatible against 4.0; r?glob draft
authorGregory Szorc <gps@mozilla.com>
Mon, 03 Apr 2017 16:01:49 -0700
changeset 10629 224ed8d7c4a8fb0c1dc66023222283d60cf7e987
parent 10628 8b510e1685f053cb8dd10168fbf8257805ccf899
child 10630 934b7c31da137a1de83bced31a0dbfcc8b71cf8f
push id1600
push userbmo:gps@mozilla.com
push dateMon, 03 Apr 2017 23:38:00 +0000
reviewersglob
serverlog: only mark as compatible against 4.0; r?glob We don't care about running this extension outside of servers. Let's mark it as only compatible against what we run on servers. MozReview-Commit-ID: DcWqg4hSnlS
hgext/serverlog/__init__.py
--- a/hgext/serverlog/__init__.py
+++ b/hgext/serverlog/__init__.py
@@ -179,18 +179,18 @@ from mercurial import (
     wireproto,
 )
 from mercurial.hgweb import (
     protocol,
     hgweb_mod,
     hgwebdir_mod,
 )
 
-testedwith = '3.7 3.8 3.9 4.0'
-minimumhgversion = '3.7'
+testedwith = '4.0'
+minimumhgversion = '4.0'
 
 origcall = protocol.call
 
 def protocolcall(repo, req, cmd):
     """Wraps mercurial.hgweb.protocol to record requests."""
 
     # TODO figure out why our custom attribute is getting lost in
     # production.