From a7a379b68451a767130654afa56299506e1e790e Mon Sep 17 00:00:00 2001 From: Joseph Montoya Date: Wed, 18 Mar 2020 15:17:03 -0700 Subject: [PATCH] Update readme and setup.py with new build/url info --- README.md | 2 ++ beep/__init__.py | 2 +- setup.py | 4 ++-- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 0c31b989..45033278 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ +[![Build Status](https://travis-ci.com/TRI-AMDD/beep.svg?branch=master)](https://travis-ci.com/TRI-AMDD/beep) + # Summary Beep is software designed to support Battery Estimation and Early Prediction diff --git a/beep/__init__.py b/beep/__init__.py index 44db2147..22b0626d 100644 --- a/beep/__init__.py +++ b/beep/__init__.py @@ -21,7 +21,7 @@ # Versioning. The python code version is frequently tagged # with a commit hash from the repo, which is supplied via # an environment variable by the integration build procedure -__version__ = "2020.3.8" +__version__ = "2020.3.18" VERSION_TAG = os.environ.get("BEEP_VERSION_TAG") if VERSION_TAG is not None: __version__ = '-'.join([__version__, VERSION_TAG]) diff --git a/setup.py b/setup.py index 1f8d28ce..68245ce5 100644 --- a/setup.py +++ b/setup.py @@ -17,8 +17,8 @@ """ setup(name="beep", - url="https://github.com/ToyotaResearchInstitute/beep", - version="2020.3.8", + url="https://github.com/TRI-AMDD/beep", + version="2020.3.18", description=DESCRIPTION, long_description=LONG_DESCRIPTION, long_description_content_type='text/markdown',