pushlog: mark as compatible with 3.7; r=glandium
authorGregory Szorc <gps@mozilla.com>
Wed, 13 Jul 2016 15:22:53 -0700
changeset 8956 d3ae0c9b674b97eafba1d70a8d7bd6f4202e962e
parent 8952 b2434cbfec7cb7c878aa5d211276087f8f1faad4
child 8957 7a874e1c98d71fa18d1a589ab65b566169e4e547
push id1034
push userbmo:gps@mozilla.com
push dateTue, 19 Jul 2016 18:10:24 +0000
reviewersglandium
pushlog: mark as compatible with 3.7; r=glandium Because it runs on 3.7 in production. MozReview-Commit-ID: 6rMK34JQydn
hgext/pushlog-legacy/buglink.py
hgext/pushlog-legacy/pushlog-feed.py
--- a/hgext/pushlog-legacy/buglink.py
+++ b/hgext/pushlog-legacy/buglink.py
@@ -1,17 +1,17 @@
 # To enable:
 #
 # [extensions]
 # buglink = /path/to/buglink.py
 
 import re
 from mercurial import templatefilters
 
-testedwith = '3.6'
+testedwith = '3.6 3.7'
 
 bug_re = re.compile(r'''# bug followed by any sequence of numbers, or
                         # a standalone sequence of numbers
                      (
                         (?:
                           bug |
                           b= |
                           # a sequence of 5+ numbers preceded by whitespace
--- a/hgext/pushlog-legacy/pushlog-feed.py
+++ b/hgext/pushlog-legacy/pushlog-feed.py
@@ -21,17 +21,17 @@ demandimport.disable()
 from parsedatetime import parsedatetime as pdt
 
 try:
     import sqlite3 as sqlite
 except ImportError:
     from pysqlite2 import dbapi2 as sqlite
 demandimport.enable()
 
-testedwith = '3.6'
+testedwith = '3.6 3.7'
 
 cal = pdt.Calendar()
 PUSHES_PER_PAGE = 10
 
 def addcommand(f, name):
     setattr(hgwebprotocol, name, f)
     hgwebprotocol.__all__.append(name)