mosquito / aio-pika

AMQP 0.9 client designed for asyncio and humans.

Home Page:https://aio-pika.readthedocs.org/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Deprecation warnings about datetime.utcnow and datetime.utcfromtimestamp

decaz opened this issue · comments

Method datetime.utcnow is deprecated since version 3.12:

DeprecationWarning: datetime.datetime.utcnow() 
is deprecated and scheduled for removal in a future version. 
Instead, Use timezone-aware objects to represent datetimes in UTC: 
datetime.datetime.now(datetime.UTC).

Method datetime.utcfromtimestamp is deprecated since version 3.12:

DeprecationWarning: datetime.datetime.utcfromtimestamp() 
is deprecated and scheduled for removal in a future version. 
Use timezone-aware objects to represent datetimes in UTC: 
datetime.datetime.fromtimestamp(timestamp, datetime.UTC).