From e49bd4d2f465302d5393363460a415ed656b13f8 Mon Sep 17 00:00:00 2001 From: jdebacker Date: Thu, 14 Mar 2024 11:05:58 -0400 Subject: [PATCH] version bump --- README.md | 2 +- ccc/__init__.py | 2 +- docs/book/content/intro.md | 2 +- setup.py | 6 ++---- 4 files changed, 5 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 3da39a6d..5517b28f 100644 --- a/README.md +++ b/README.md @@ -53,4 +53,4 @@ Results will change as the underlying models improve. A fundamental reason for a ## Citing the Cost-of-Capital-Calculator Model -Cost-of-Capital-Calculator (Version 1.2.11)[Source code], https://github.com/PSLmodels/Cost-of-Capital-Calculator +Cost-of-Capital-Calculator (Version 1.3.0)[Source code], https://github.com/PSLmodels/Cost-of-Capital-Calculator diff --git a/ccc/__init__.py b/ccc/__init__.py index 1749abbb..472b2e60 100644 --- a/ccc/__init__.py +++ b/ccc/__init__.py @@ -6,4 +6,4 @@ from ccc.data import * from ccc.calculator import * -__version__ = "0.0.0" +__version__ = "1.3.0" diff --git a/docs/book/content/intro.md b/docs/book/content/intro.md index 50df130b..d3270d34 100644 --- a/docs/book/content/intro.md +++ b/docs/book/content/intro.md @@ -22,4 +22,4 @@ Results will change as the underlying models improve. A fundamental reason for a ## Citing the Cost-of-Capital-Calculator Model -Cost-of-Capital-Calculator (Version 1.2.10)[Source code], https://github.com/PSLmodels/Cost-of-Capital-Calculator \ No newline at end of file +Cost-of-Capital-Calculator (Version 1.3.0)[Source code], https://github.com/PSLmodels/Cost-of-Capital-Calculator \ No newline at end of file diff --git a/setup.py b/setup.py index 5b6cd574..76ada95f 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ with open("README.md") as f: longdesc = f.read() -version = "1.2.11" +version = "1.3.0" config = { "description": "CCC: A Cost of Capital Calculator", @@ -28,11 +28,9 @@ "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.6", - "Programming Language :: Python :: 3.7", - "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", "Topic :: Software Development :: Libraries :: Python Modules", ], "tests_require": ["pytest"],