mosquito / aio-pika

AMQP 0.9 client designed for asyncio and humans.
https://aio-pika.readthedocs.org/
Apache License 2.0
1.18k stars 186 forks source link

Deprecation warnings about datetime.utcnow and datetime.utcfromtimestamp #609

Closed decaz closed 4 months ago

decaz commented 6 months ago

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).