Skip to content

Commit

Permalink
Update version, change_log and ruff
Browse files Browse the repository at this point in the history
  • Loading branch information
rsheftel committed Jun 17, 2024
1 parent b057fc7 commit b3c1b8b
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test_runner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ jobs:
pip install pytest coveralls black===24.1.1
pip install .
- name: ensure black format
run: python -m black --check pandas_market_calendars tests
# - name: ensure black format
# run: python -m black --check pandas_market_calendars tests

- name: run tests
run: |
Expand Down
4 changes: 4 additions & 0 deletions docs/change_log.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ Updates
4.4.1 ()
~~~~~~~~~~~~~~~~~~
- Added CME Grains calendar (CMEGlobexGrainsExchangeCalendar) from PR #333
- Removed the Black format check from pre-commit, was causing too many errors
- 24/7 and XTAE Calendar Fixes from PR #346
- Changes the required python to be only 3.8 or greater, but tests will only be run for 3.9+
- CME updated to include Juneteenth PR #337

4.4.0 (02/10/2024)
~~~~~~~~~~~~~~~~~~
Expand Down
4 changes: 2 additions & 2 deletions pandas_market_calendars/calendars/hkex.py
Original file line number Diff line number Diff line change
Expand Up @@ -354,9 +354,9 @@ def process_queen_birthday(dt):
Timestamp("2016-10-21", tz="UTC"), # 台风海马1622
# Timestamp(2017-06-12', tz='UTC'), # 台风苗柏1702,期货夜盘17:35休市
Timestamp("2017-08-23", tz="UTC"), # 台风天鸽1713
Timestamp("2023-07-17", tz="UTC"), # Typhoon closure
Timestamp("2023-07-17", tz="UTC"), # Typhoon closure
Timestamp("2023-09-01", tz="UTC"), # Typhoon closure
Timestamp("2023-09-08", tz="UTC"), # Typhoon closure
Timestamp("2023-09-08", tz="UTC"), # Typhoon closure
]


Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ authors = [
]
description = "Market and exchange trading calendars for pandas"
readme = "README.rst"
requires-python = ">=3.9"
requires-python = ">=3.8"
keywords = ["trading", "exchanges", "markets", "OTC", "datetime", "holiday", "business days"]
license = { text = "MIT" }
classifiers = [
Expand Down

0 comments on commit b3c1b8b

Please sign in to comment.