Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

4.1.3 #237

Merged
merged 3 commits into from
Dec 26, 2022
Merged

4.1.3 #237

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/config_new_release.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@

new_version: '4.1.2'
new_version: '4.1.3'

change_log: |
- Added 2023 holidays to BSE calendar
- Added Chinese 2023 holidays


release_body: |
Expand Down
2 changes: 1 addition & 1 deletion pandas_market_calendars/exchange_calendar_sse.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def regular_holidays(self):
# Since all past holidays are adhoc, start_year should always be a year in the future.
# For example: Holiday arrangements for 2022 are now included,
# then our guesswork starts from the next year so start_year = 2023
start_year = 2023
start_year = 2024

return AbstractHolidayCalendar(rules=[
Holiday(
Expand Down
18 changes: 18 additions & 0 deletions pandas_market_calendars/holidays_cn.py
Original file line number Diff line number Diff line change
Expand Up @@ -546,6 +546,24 @@
Timestamp('2022-10-05'),
Timestamp('2022-10-06'),
Timestamp('2022-10-07'),
Timestamp('2023-01-02'),
Timestamp('2023-01-23'),
Timestamp('2023-01-24'),
Timestamp('2023-01-25'),
Timestamp('2023-01-26'),
Timestamp('2023-01-27'),
Timestamp('2023-04-05'),
Timestamp('2023-05-01'),
Timestamp('2023-05-02'),
Timestamp('2023-05-03'),
Timestamp('2023-06-22'),
Timestamp('2023-06-23'),
Timestamp('2023-09-29'),
Timestamp('2023-10-02'),
Timestamp('2023-10-03'),
Timestamp('2023-10-04'),
Timestamp('2023-10-05'),
Timestamp('2023-10-06'),
]

# The following holidays are based on Solar terms or Chinese lunisolar calendar,
Expand Down