Bug 1427837 - Bump mozinstall to 1.15 r?ahal draft
authorWilliam Lachance <wlachance@mozilla.com>
Wed, 03 Jan 2018 14:34:07 -0500
changeset 715350 cac912efcd6fdc2b10e5463ed80367b1ae48fe73
parent 715271 ac93fdadf1022211eec62258ad22b42cb37a6d14
child 744780 e77e3f8090c8fc49a0f575006772da7f4044dae7
push id94147
push userwlachance@mozilla.com
push dateWed, 03 Jan 2018 19:34:21 +0000
reviewersahal
bugs1427837
milestone59.0a1
Bug 1427837 - Bump mozinstall to 1.15 r?ahal MozReview-Commit-ID: LkcqILfkVwb
testing/mozbase/mozinstall/setup.py
--- a/testing/mozbase/mozinstall/setup.py
+++ b/testing/mozbase/mozinstall/setup.py
@@ -1,24 +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/.
 
 from __future__ import absolute_import
 
 import os
 from setuptools import setup
 
 try:
     here = os.path.dirname(os.path.abspath(__file__))
     description = file(os.path.join(here, 'README.md')).read()
 except IOError:
     description = None
 
-PACKAGE_VERSION = '1.14'
+PACKAGE_VERSION = '1.15'
 
 deps = ['mozinfo >= 0.7',
         'mozfile >= 1.0',
         'requests',
         'six >= 1.10.0',
         ]
 
 setup(name='mozInstall',