Skip to content

Commit 773be75

Browse files
committed
bump version
1 parent 8a40a3b commit 773be75

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

docs/conf.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,15 @@
1212
#
1313
import os
1414
from os.path import relpath, dirname
15+
from tmval.constants import BUILD_VERSION
1516
import sys
1617
sys.path.insert(0, os.path.abspath('..'))
1718

1819
# -- Project information -----------------------------------------------------
1920

2021
project = 'TmVal Documentation'
2122
copyright = '2020, Gene Dan, FCAS, MAAA, CSPA'
22-
release = 'v0.0.9'
23+
release = 'v' + BUILD_VERSION
2324
author = 'Gene Dan, FCAS, MAAA, CSPA'
2425

2526

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
import setuptools
22

3+
from tmval.constants import BUILD_VERSION
4+
35
with open("README.md", "r") as fh:
46
long_description = fh.read()
57

68
setuptools.setup(
79
name="tmval",
8-
version="0.0.9",
10+
version=BUILD_VERSION,
911
author="Gene Dan",
1012
author_email="genedan@gmail.com",
1113
description="Time Value of Money",

tmval/constants.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
BUILD_VERSION = '0.0.10'
2+
13
FORMAL_PATTERNS = {
24
'interest': 'Effective Interest',
35
'i': 'Effective Interest',

0 commit comments

Comments
 (0)