Bug 1082469 - [mozrunner] Bump version to 6.4. r=ahal
--- a/testing/mozbase/mozrunner/setup.py
+++ b/testing/mozbase/mozrunner/setup.py
@@ -1,28 +1,28 @@
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this file,
# You can obtain one at http://mozilla.org/MPL/2.0/.
import sys
from setuptools import setup, find_packages
PACKAGE_NAME = 'mozrunner'
-PACKAGE_VERSION = '6.3'
+PACKAGE_VERSION = '6.4'
desc = """Reliable start/stop/configuration of Mozilla Applications (Firefox, Thunderbird, etc.)"""
-deps = ['mozcrash >= 0.11',
+deps = ['mozcrash >= 0.14',
'mozdevice >= 0.37',
'mozfile >= 1.0',
'mozinfo >= 0.7',
'mozlog >= 1.5',
'mozprocess >= 0.17',
'mozprofile >= 0.18',
- ]
+ ]
# we only support python 2 right now
assert sys.version_info[0] == 2
setup(name=PACKAGE_NAME,
version=PACKAGE_VERSION,
description=desc,
long_description="see http://mozbase.readthedocs.org/",