vcssync: require Mercurial 4.1 (bug 1333616); r?glob draft
authorGregory Szorc <gps@mozilla.com>
Mon, 03 Apr 2017 11:37:37 -0700
changeset 10641 c696d31548cf54d5adc1139bfa057cbf63332fb1
parent 10640 e60ae9674d228e409229729b344bc4683cd1dad6
child 10642 0335d2f40ab2d3daad0e1466a55a0f3f030d1723
push id1600
push userbmo:gps@mozilla.com
push dateMon, 03 Apr 2017 23:38:00 +0000
reviewersglob
bugs1333616
vcssync: require Mercurial 4.1 (bug 1333616); r?glob The code for vcssync actually rely on a feature in 4.1. But setup.py allows 4.0 because that's what we were running in our test environment. Now that we've upgraded the test environment and made the tests pass on 4.1, let's bump the install requirement to 4.1+. MozReview-Commit-ID: 6ieyS4zVEs1
vcssync/setup.py
--- a/vcssync/setup.py
+++ b/vcssync/setup.py
@@ -22,11 +22,11 @@ setup(
             'servo-overlay=mozvcssync.servo:overlay_cli',
             'servo-pulse-listen=mozvcssync.servo:pulse_daemon',
         ],
     },
     install_requires=[
         'dulwich>=0.16',
         'github3.py>=0.9.6',
         'kombu>=3.0.37',
-        'Mercurial>=4.0',
+        'Mercurial>=4.1',
     ],
 )