author | Nikki S <nikkisharpley@gmail.com> |
Fri, 10 May 2019 10:29:49 +0000 | |
changeset 473376 | 757f1c83278b03859f4f23e85e22e732c2bc313f |
parent 473375 | da74be741b81bb930c64a223ae36f63359b3367c |
child 473377 | 4f26cd2daf5c0298bd644145265f06fadd33ad55 |
push id | 35996 |
push user | dvarga@mozilla.com |
push date | Fri, 10 May 2019 21:46:48 +0000 |
treeherder | mozilla-central@362df4629f8f [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | jgraham |
bugs | 1550565 |
milestone | 68.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
--- a/testing/mozbase/mozlog/setup.py +++ b/testing/mozbase/mozlog/setup.py @@ -2,17 +2,17 @@ # 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 from setuptools import setup, find_packages PACKAGE_NAME = 'mozlog' -PACKAGE_VERSION = '4.0' +PACKAGE_VERSION = '4.1' DEPS = [ 'blessings>=1.3', 'mozterm', 'six >= 1.10.0', ] setup(name=PACKAGE_NAME,
--- a/testing/mozbase/mozprofile/setup.py +++ b/testing/mozbase/mozprofile/setup.py @@ -6,17 +6,17 @@ from __future__ import absolute_import from setuptools import setup PACKAGE_NAME = 'mozprofile' PACKAGE_VERSION = '2.2.0' deps = [ 'mozfile>=1.2', - 'mozlog~=4.0', + 'mozlog~=4.1', 'six>=1.10.0,<2', ] setup(name=PACKAGE_NAME, version=PACKAGE_VERSION, description="Library to create and modify Mozilla application profiles", long_description="see https://firefox-source-docs.mozilla.org/mozbase/index.html", classifiers=['Environment :: Console',
--- a/testing/mozbase/mozrunner/setup.py +++ b/testing/mozbase/mozrunner/setup.py @@ -10,17 +10,17 @@ PACKAGE_NAME = 'mozrunner' PACKAGE_VERSION = '7.4.0' desc = """Reliable start/stop/configuration of Mozilla Applications (Firefox, Thunderbird, etc.)""" deps = [ 'mozdevice>=3.0.1', 'mozfile>=1.2', 'mozinfo>=0.7,<2', - 'mozlog~=4.0', + 'mozlog~=4.1', 'mozprocess>=0.23,<2', 'mozprofile~=2.1', 'six>=1.10.0,<2', ] EXTRAS_REQUIRE = {'crash': ['mozcrash >= 1.0']} setup(name=PACKAGE_NAME,
--- a/testing/mozbase/mozversion/setup.py +++ b/testing/mozbase/mozversion/setup.py @@ -18,15 +18,15 @@ setup(name='mozversion', keywords='mozilla', author='Mozilla Automation and Testing Team', author_email='tools@lists.mozilla.org', url='https://wiki.mozilla.org/Auto-tools/Projects/Mozbase', license='MPL', packages=['mozversion'], include_package_data=True, zip_safe=False, - install_requires=['mozlog ~= 4.0', + install_requires=['mozlog ~= 4.1', 'six >= 1.10.0'], entry_points=""" # -*- Entry points: -*- [console_scripts] mozversion = mozversion:cli """)