Skip to content

Commit

Permalink
BSE and other updates
Browse files Browse the repository at this point in the history
  • Loading branch information
rsheftel committed Sep 6, 2023
1 parent b08f21f commit 661e044
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 9 deletions.
9 changes: 3 additions & 6 deletions .github/config_new_release.yml
@@ -1,12 +1,9 @@

new_version: '4.3.0'
new_version: '4.3.2'

change_log: |
- Fixed for pandas 2.0 so all tests pass PR #282
- Move exchange_calendar*.py files to pandas_market_calendar/exchange_calendars/ PR #284
- Move holidays_*.py to pandas_market_calendar/holidays/ PR #284
- Major cleanup including unused imports PR #284
- Reformat all code using Black and make black a standard PR #290
- Add XNSE as a name for BSE calendar # 277
release_body: |
Expand Down
6 changes: 6 additions & 0 deletions docs/change_log.rst
Expand Up @@ -3,6 +3,12 @@ Change Log

Updates
-------
4.3.2 (XX/XX/2023)
~~~~~~~~~~~~~~~~~~
- Reformat all code using Black and make black a standard PR #290
- Add XNSE as a name for BSE calendar
- Update holidays for BSE # 277

4.3.1 (09/06/2023)
~~~~~~~~~~~~~~~~~~
- Fixed broken build PR #292
Expand Down
4 changes: 2 additions & 2 deletions pandas_market_calendars/calendars/bse.py
Expand Up @@ -365,8 +365,8 @@
Timestamp("2023-04-22", tz="UTC"), # Sat, EID AL FITR
Timestamp("2023-05-01", tz="UTC"), # Mon, Maharashtra Din
Timestamp("2023-06-28", tz="UTC"), # Wed, Bakri Id / Eid ul-Adha
Timestamp("2023-06-29", tz="UTC"), # GitHub Issue #277
Timestamp("2023-08-15", tz="UTC"), # Tue, Independence Day
Timestamp("2023-08-29", tz="UTC"), # Tue, Muharram
Timestamp("2023-09-19", tz="UTC"), # Tue, Ganesh Chaturthi
Timestamp("2023-10-02", tz="UTC"), # Mon, Gandhi Jayanti
Timestamp("2023-10-24", tz="UTC"), # Tue, Dussehra
Expand All @@ -388,7 +388,7 @@ class BSEExchangeCalendar(MarketCalendar):
early closes or late opens.
"""

aliases = ["BSE", "NSE"]
aliases = ["BSE", "NSE", "XNSE"]
regular_market_times = {
"market_open": ((None, time(9, 15)),),
"market_close": ((None, time(15, 30)),),
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
@@ -1,6 +1,6 @@
[project]
name = "pandas_market_calendars"
version = "4.3.1"
version = "4.3.2"
authors = [
{ name="Ryan Sheftel", email="rsheftel@alumni.upenn.edu" },
]
Expand Down

0 comments on commit 661e044

Please sign in to comment.