AutoFramework/venv/Lib/site-packages/pip/_internal/utils/datetime.py

12 lines
242 B
Python
Raw Normal View History

2022-07-17 01:48:29 +08:00
"""For when pip wants to check the date or time.
"""
import datetime
2022-07-21 08:44:10 +08:00
def today_is_later_than(year: int, month: int, day: int) -> bool:
2022-07-17 01:48:29 +08:00
today = datetime.date.today()
given = datetime.date(year, month, day)
return today > given