From 702f66f0810da1760fbe412975331cd7cf491db0 Mon Sep 17 00:00:00 2001 From: Stryder-Git Date: Mon, 31 Oct 2022 13:54:47 +0000 Subject: [PATCH] [GH-Actions] v4.1.1 -- updated configuration and documentation files. --- docs/change_log.rst | 4 ++++ docs/usage.rst | 2 +- pyproject.toml | 2 +- setup.py | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/docs/change_log.rst b/docs/change_log.rst index bdc1677..f84b142 100644 --- a/docs/change_log.rst +++ b/docs/change_log.rst @@ -3,6 +3,10 @@ Updates ------- +4.1.1 (10/31/2022) +~~~~~~~~~~~~~~ +- Fix for bug in NYSEExchangeCalendar.valid_days + 4.1.0 (10/08/2022) ~~~~~~~~~~~~~~ - Added UK and Australia holidays for Queen Elizabeth II's State Funeral diff --git a/docs/usage.rst b/docs/usage.rst index 78bd363..c1f637c 100644 --- a/docs/usage.rst +++ b/docs/usage.rst @@ -1969,7 +1969,7 @@ Handling discontinued times .. parsed-literal:: - /opt/hostedtoolcache/Python/3.10.7/x64/lib/python3.10/site-packages/pandas_market_calendars/market_calendar.py:144: UserWarning: ['break_start', 'break_end'] are discontinued, the dictionary `.discontinued_market_times` has the dates on which these were discontinued. The times as of those dates are incorrect, use .remove_time(market_time) to ignore a market_time. + /opt/hostedtoolcache/Python/3.10.8/x64/lib/python3.10/site-packages/pandas_market_calendars/market_calendar.py:144: UserWarning: ['break_start', 'break_end'] are discontinued, the dictionary `.discontinued_market_times` has the dates on which these were discontinued. The times as of those dates are incorrect, use .remove_time(market_time) to ignore a market_time. warnings.warn(f"{list(discontinued.keys())} are discontinued, the dictionary" diff --git a/pyproject.toml b/pyproject.toml index f33923b..5f8ca11 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "pandas_market_calendars" -version = "4.1.0" +version = "4.1.1" authors = [ { name="Ryan Sheftel", email="rsheftel@alumni.upenn.edu" }, ] diff --git a/setup.py b/setup.py index 2c54e18..d11837d 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ from setuptools import find_packages, setup # version -VERSION = '4.1.0' +VERSION = '4.1.1' # requirements REQUIRED_PYTHON = '>=3.8.0'