Skip to content

Commit e8d776d

Browse files
committed
fixed tests
1 parent c756fd4 commit e8d776d

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

PyFin/DateUtilities/Calendar.pyx

+1-1
Original file line numberDiff line numberDiff line change
@@ -893,8 +893,8 @@ cdef set ib_working_weekends = {
893893
Date(2022, 10, 8),
894894
Date(2022, 10, 9),
895895
# 2023
896-
Date(2023, 1, 27),
897896
Date(2023, 1, 28),
897+
Date(2023, 1, 29),
898898
Date(2023, 4, 23),
899899
Date(2023, 5, 6),
900900
Date(2023, 6, 25),

PyFin/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@
2323
'Analysis',
2424
'Utilities']
2525

26-
__version__ = "0.9.9"
26+
__version__ = "0.9.10"

PyFin/tests/DateUtilities/testCalendar.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -223,8 +223,8 @@ def testChinaIB(self):
223223
Date(2022, 10, 8),
224224
Date(2022, 10, 9),
225225
# China Inter Bank working weekend list in the year 2023
226-
Date(2023, 1, 27),
227226
Date(2023, 1, 28),
227+
Date(2023, 1, 29),
228228
Date(2023, 4, 23),
229229
Date(2023, 5, 6),
230230
Date(2023, 6, 25),

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
PACKAGE = "PyFin"
2727
NAME = "Finance-Python"
28-
__version__ = "0.9.9"
28+
__version__ = "0.9.10"
2929
DESCRIPTION = "PyFin " + __version__
3030
AUTHOR = "cheng li"
3131
AUTHOR_EMAIL = "[email protected]"

0 commit comments

Comments
 (0)