From fb8d76b9b9f922b3984f5184bc67872479bede4a Mon Sep 17 00:00:00 2001 From: Debasish Pal <48341250+debpal@users.noreply.github.com> Date: Sun, 6 Oct 2024 21:34:57 +0300 Subject: [PATCH] version 0.1.3 --- docs/changelog.rst | 5 ++--- pyproject.toml | 2 +- tests/test_bharatfintrack.py | 4 ++-- 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index a3e165a..05ffa16 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -15,6 +15,8 @@ Version 0.1.3 * **Bug Fixes:** Issues with the API used to fetch Total Return Index data. +* **Development Status:** Upgraded from Alpha to Beta. + Version 0.1.2 -------------- @@ -28,9 +30,6 @@ Version 0.1.2 * **Feature Additions:** Added functionality for sorting the CAGR (%) of all NSE equity indices since launch. -* **Development Status:** Upgraded from Alpha to Beta. - - Version 0.1.1 -------------- diff --git a/pyproject.toml b/pyproject.toml index e9e7da5..f76c500 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,7 +20,7 @@ dependencies = [ readme = "README.md" requires-python = ">=3.10" classifiers = [ - "Development Status :: 3 - Alpha", + "Development Status :: 4 - Beta", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", diff --git a/tests/test_bharatfintrack.py b/tests/test_bharatfintrack.py index 7b25bb1..483fa8e 100644 --- a/tests/test_bharatfintrack.py +++ b/tests/test_bharatfintrack.py @@ -215,14 +215,14 @@ def test_download_historical_daily_data( df = nse_tri.download_historical_daily_data( index='NIFTY INDIA DEFENCE', start_date=None, - end_date='06-Apr-2018' + end_date='10-Apr-2018' ) assert float(df.iloc[0, -1]) == 1000.00 # pass test for end date being None start_date = (datetime.date.today() - datetime.timedelta(days=7)).strftime('%d-%b-%Y') df = nse_tri.download_historical_daily_data( - index='NIFTY CONSUMER DURABLES', + index='NIFTY 50', start_date=start_date, end_date=None )