From 9aba9a719a39ed64694e0d5c750d79a7d1bb0256 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Pag=C3=A8s?= Date: Thu, 3 Sep 2015 16:16:06 +0200 Subject: [PATCH] Bug 1201511 - [mozrunner] require mozprocess >=0.22 and bump mozrunner version to 6.10. r=ahal --- testing/mozbase/mozrunner/setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testing/mozbase/mozrunner/setup.py b/testing/mozbase/mozrunner/setup.py index 0d20ad76ccc..c323112c602 100644 --- a/testing/mozbase/mozrunner/setup.py +++ b/testing/mozbase/mozrunner/setup.py @@ -6,7 +6,7 @@ import sys from setuptools import setup, find_packages PACKAGE_NAME = 'mozrunner' -PACKAGE_VERSION = '6.9' +PACKAGE_VERSION = '6.10' desc = """Reliable start/stop/configuration of Mozilla Applications (Firefox, Thunderbird, etc.)""" @@ -15,7 +15,7 @@ deps = ['mozcrash >= 0.14', 'mozfile >= 1.0', 'mozinfo >= 0.7', 'mozlog >= 3.0', - 'mozprocess >= 0.17', + 'mozprocess >= 0.22', 'mozprofile >= 0.18', ]