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

fw/version: Version Bump

Bump to the next revision release.
This commit is contained in:
Marc Bonnici 2019-03-04 14:06:29 +00:00 committed by setrofim
parent f977c3dfc8
commit b5db4afc05
3 changed files with 3 additions and 4 deletions

View File

@ -43,7 +43,7 @@ FROM ubuntu:17.10
# Please update the references below to use different versions of # Please update the references below to use different versions of
# devlib, WA or the Android SDK # devlib, WA or the Android SDK
ARG DEVLIB_REF=v1.1.1 ARG DEVLIB_REF=v1.1.1
ARG WA_REF=v3.1.2 ARG WA_REF=v3.1.3
ARG ANDROID_SDK_URL=https://dl.google.com/android/repository/sdk-tools-linux-3859397.zip ARG ANDROID_SDK_URL=https://dl.google.com/android/repository/sdk-tools-linux-3859397.zip
RUN apt-get update RUN apt-get update

View File

@ -90,7 +90,6 @@ params = dict(
'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-1.1.dev1'],
extras_require={ extras_require={
'other': ['jinja2'], 'other': ['jinja2'],
'test': ['nose', 'mock'], 'test': ['nose', 'mock'],

View File

@ -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, 2, 'dev1') version = VersionTuple(3, 1, 3, '')
required_devlib_version = VersionTuple(1, 1, 1, 'dev1') required_devlib_version = VersionTuple(1, 1, 1, '')
def format_version(v): def format_version(v):