1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-01-18 12:06:08 +00:00

wa/version: Update to development version

Update WA and devlib versions to development tags.
This commit is contained in:
Marc Bonnici 2019-01-04 11:05:37 +00:00
parent e187e7efd6
commit 60fe412548
2 changed files with 3 additions and 2 deletions

View File

@ -83,12 +83,13 @@ params = dict(
'colorama', # Printing with colors
'pyYAML', # YAML-formatted agenda parsing
'requests', # Fetch assets over HTTP
'devlib>=1.1.0', # Interacting with devices
'devlib>=1.1.dev1', # Interacting with devices
'louie-latest', # callbacks dispatch
'wrapt', # better decorators
'pandas>=0.23.0', # Data analysis and manipulation
'future', # Python 2-3 compatiblity
],
dependency_links=['https://github.com/ARM-software/devlib/tarball/master#egg=devlib-1.1.dev1'],
extras_require={
'other': ['jinja2'],
'test': ['nose', 'mock'],

View File

@ -21,7 +21,7 @@ from subprocess import Popen, PIPE
VersionTuple = namedtuple('Version', ['major', 'minor', 'revision'])
version = VersionTuple(3, 1, 0)
version = VersionTuple(3, 1, 'dev1')
def get_wa_version():