From 1dd98d495264031e5a2ac6372a31268c67b7d4b5 Mon Sep 17 00:00:00 2001 From: chen Date: Wed, 29 Aug 2018 18:51:38 -0400 Subject: [PATCH 1/2] add unit symbols to loan summary on prelim finance page --- bpfin/back_end_call/back_end_prelim.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/bpfin/back_end_call/back_end_prelim.py b/bpfin/back_end_call/back_end_prelim.py index f917a14..5cab497 100644 --- a/bpfin/back_end_call/back_end_prelim.py +++ b/bpfin/back_end_call/back_end_prelim.py @@ -168,11 +168,11 @@ def prelim_scenario(raw_monthly_bill_table, raw_annual_bill_table, raw_income_in # the following is front-end formatting building: loan_showcase_list = [ 'Lender', - 'Amount Borrowed', - 'Amount Upper Limit', - 'Annual Interest Rate', - 'Duration, months', - 'Monthly Debt Service'] + 'Amount Borrowed ($)', + 'Amount Upper Limit ($)', + 'Annual Interest Rate (%)', + 'Duration (months)', + 'Monthly Debt Service ($)'] loan_item_list = [ 'institute', 'amount', -- GitLab From 07eff1ba1865c4f5c2d7d1117d8fcf3ed76285e5 Mon Sep 17 00:00:00 2001 From: chen Date: Thu, 30 Aug 2018 15:04:53 -0400 Subject: [PATCH 2/2] Update version to v0.2.3 --- setup.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index f8d34df..ac4123d 100644 --- a/setup.py +++ b/setup.py @@ -1,9 +1,9 @@ import uuid from distutils.core import setup from setuptools import find_packages -try: # for pip >= 10 - from pip._internal.req import parse_requirements -except ImportError: # for pip <= 9.0.3 +try: # for pip >= 10 + from pip._internal.req import parse_requirements +except ImportError: # for pip <= 9.0.3 from pip.req import parse_requirements @@ -12,7 +12,7 @@ reqs = [str(req.req) for req in install_reqs] setup( name='bpfin', - version='0.2.2', + version='0.2.3', description='Finance models and utilites', author='BlocPower', author_email='admin@blocpower.org', -- GitLab