Bug 1651762 - [mozrunner] Bump to version 8.0.0, r=gbrown

There have been a few backwards incompatible changes, so bumping major version.
This also updates the minimum mozprocess to 1.2.0 to pick up the latest Py3
fixes.

Depends on D82974

Differential Revision: https://phabricator.services.mozilla.com/D82975
This commit is contained in:
Andrew Halberstadt 2020-07-09 20:31:23 +00:00
parent 835a5cb742
commit 54703acbfb

View File

@ -7,7 +7,7 @@ from __future__ import absolute_import
from setuptools import setup, find_packages
PACKAGE_NAME = 'mozrunner'
PACKAGE_VERSION = '7.8.0'
PACKAGE_VERSION = '8.0.0'
desc = """Reliable start/stop/configuration of Mozilla Applications (Firefox, Thunderbird, etc.)"""
@ -16,7 +16,7 @@ deps = [
'mozfile>=1.2',
'mozinfo>=0.7,<2',
'mozlog>=6.0',
'mozprocess>=0.23,<2',
'mozprocess>=1.2.0,<2',
'mozprofile~=2.3',
'six>=1.10.0,<2',
]