betamaxpy / betamax

A VCR imitation designed only for python-requests.
https://betamax.readthedocs.io/en/latest/
Other
567 stars 62 forks source link

Remove deprecated utcnow calls #209

Closed sigmavirus24 closed 5 months ago

sigmavirus24 commented 5 months ago

datetime.datetime.utcnow() is deprecated. We should use datetime.datime.now(datetime.timezone.UTC) where we use utcnow today

cryptomail commented 1 month ago

FYI: I think there are a few more deprecation spots 😿 Screenshot 2024-08-20 at 12 58 12 PM adapter.py is an example I'm getting Python 3.12 complaints about.

cryptomail commented 1 month ago

oh wait, latest in source doesn't have this!