mirror of
https://github.com/ARM-software/workload-automation.git
synced 2025-02-22 04:49:00 +00:00
fw/version: Bump to development version
This commit is contained in:
parent
b5db4afc05
commit
8ddc1c1eba
5
setup.py
5
setup.py
@ -62,6 +62,8 @@ for root, dirs, files in os.walk(wa_dir):
|
|||||||
|
|
||||||
scripts = [os.path.join('scripts', s) for s in os.listdir('scripts')]
|
scripts = [os.path.join('scripts', s) for s in os.listdir('scripts')]
|
||||||
|
|
||||||
|
|
||||||
|
devlib_version = format_version(required_devlib_version)
|
||||||
params = dict(
|
params = dict(
|
||||||
name='wlauto',
|
name='wlauto',
|
||||||
description='A framework for automating workload execution and measurement collection on ARM devices.',
|
description='A framework for automating workload execution and measurement collection on ARM devices.',
|
||||||
@ -84,12 +86,13 @@ params = dict(
|
|||||||
'colorama', # Printing with colors
|
'colorama', # Printing with colors
|
||||||
'pyYAML>=5.1b3', # YAML-formatted agenda parsing
|
'pyYAML>=5.1b3', # YAML-formatted agenda parsing
|
||||||
'requests', # Fetch assets over HTTP
|
'requests', # Fetch assets over HTTP
|
||||||
'devlib>={}'.format(format_version(required_devlib_version)), # Interacting with devices
|
'devlib>={}'.format(devlib_version), # Interacting with devices
|
||||||
'louie-latest', # callbacks dispatch
|
'louie-latest', # callbacks dispatch
|
||||||
'wrapt', # better decorators
|
'wrapt', # better decorators
|
||||||
'pandas>=0.23.0', # Data analysis and manipulation
|
'pandas>=0.23.0', # Data analysis and manipulation
|
||||||
'future', # Python 2-3 compatiblity
|
'future', # Python 2-3 compatiblity
|
||||||
],
|
],
|
||||||
|
dependency_links=['https://github.com/ARM-software/devlib/tarball/master#egg=devlib-{}'.format(devlib_version)],
|
||||||
extras_require={
|
extras_require={
|
||||||
'other': ['jinja2'],
|
'other': ['jinja2'],
|
||||||
'test': ['nose', 'mock'],
|
'test': ['nose', 'mock'],
|
||||||
|
@ -21,9 +21,9 @@ from subprocess import Popen, PIPE
|
|||||||
|
|
||||||
VersionTuple = namedtuple('Version', ['major', 'minor', 'revision', 'dev'])
|
VersionTuple = namedtuple('Version', ['major', 'minor', 'revision', 'dev'])
|
||||||
|
|
||||||
version = VersionTuple(3, 1, 3, '')
|
version = VersionTuple(3, 1, 3, 'dev1')
|
||||||
|
|
||||||
required_devlib_version = VersionTuple(1, 1, 1, '')
|
required_devlib_version = VersionTuple(1, 1, 1, 'dev1')
|
||||||
|
|
||||||
|
|
||||||
def format_version(v):
|
def format_version(v):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user