Skip to content

Commit 177a31b

Browse files
authored
update metal early hols (#53)
* update metal early hols * fix test
1 parent b99a905 commit 177a31b

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

pythclient/calendar.py

+1
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@
7474
]
7575
METAL_EARLY_HOLIDAYS = [
7676
datetime.datetime(2024, 1, 15, tzinfo=NY_TZ).date(),
77+
datetime.datetime(2024, 2, 19, tzinfo=NY_TZ).date(),
7778
]
7879

7980
RATES_OPEN = datetime.time(8, 0, 0, tzinfo=NY_TZ)

pythclient/calendar_full_intervals.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -791,7 +791,8 @@
791791
(datetime.date(2024, 2, 16), "0000-1700"),
792792
(datetime.date(2024, 2, 17), None),
793793
(datetime.date(2024, 2, 18), "1700-0000"),
794-
(datetime.date(2024, 2, 19), "0000-0000"),
794+
(datetime.date(2024, 2, 19), "0000-1430"),
795+
(datetime.date(2024, 2, 19), "1800-0000"),
795796
(datetime.date(2024, 2, 20), "0000-0000"),
796797
(datetime.date(2024, 2, 21), "0000-0000"),
797798
(datetime.date(2024, 2, 22), "0000-0000"),

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
setup(
99
name='pythclient',
10-
version='0.1.21',
10+
version='0.1.22',
1111
packages=['pythclient'],
1212
author='Pyth Developers',
1313
author_email='[email protected]',

0 commit comments

Comments
 (0)