Bug 1176758 - Release mozprocess 0.23 and mozrunner 6.12. r?ahal draft
authorHenrik Skupin <mail@hskupin.info>
Thu, 30 Jun 2016 16:45:21 +0200
changeset 384207 642e783ecf66f4f6743115ed2f5bf761f7b3063f
parent 384206 9153eca1ca098a982d20e1583b9fd53a2804b084
child 384611 086027df5ad5f9fb39254aba006cd2e12e25c3f8
push id22206
push userbmo:hskupin@gmail.com
push dateTue, 05 Jul 2016 20:35:17 +0000
reviewersahal
bugs1176758
milestone50.0a1
Bug 1176758 - Release mozprocess 0.23 and mozrunner 6.12. r?ahal MozReview-Commit-ID: JeQhPhZHbUX
testing/mozbase/mozprocess/setup.py
testing/mozbase/mozrunner/setup.py
--- a/testing/mozbase/mozprocess/setup.py
+++ b/testing/mozbase/mozprocess/setup.py
@@ -1,15 +1,15 @@
 # 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/.
 
 from setuptools import setup
 
-PACKAGE_VERSION = '0.22'
+PACKAGE_VERSION = '0.23'
 
 setup(name='mozprocess',
       version=PACKAGE_VERSION,
       description="Mozilla-authored process handling",
       long_description='see http://mozbase.readthedocs.org/',
       classifiers=['Environment :: Console',
                    'Intended Audience :: Developers',
                    'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
--- a/testing/mozbase/mozrunner/setup.py
+++ b/testing/mozbase/mozrunner/setup.py
@@ -1,25 +1,25 @@
 # 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.11'
+PACKAGE_VERSION = '6.12'
 
 desc = """Reliable start/stop/configuration of Mozilla Applications (Firefox, Thunderbird, etc.)"""
 
 deps = ['mozdevice >= 0.37',
         'mozfile >= 1.0',
         'mozinfo >= 0.7',
         'mozlog >= 3.0',
-        'mozprocess >= 0.22',
+        'mozprocess >= 0.23',
         'mozprofile >= 0.18',
         ]
 
 EXTRAS_REQUIRE = {'crash': ['mozcrash >= 0.14']}
 
 # we only support python 2 right now
 assert sys.version_info[0] == 2