You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
datetime.datetime.utcnow is deprecated after python 3.10. It should be replaced with datetime.datetime.now(datetime.UTC). Once we drop python 3.10 support, we will be able to replace all instances of datetime.datetime.utcnow() with datetime.datetime.now(datetime.UTC).
Hey @imprvhub thanks for reaching out! I would say this is not a good one to take on. We'll want to do this when conda-store drops support for python 3.10. We're not ready to do that just yet. Thanks!
Hey @imprvhub thanks for reaching out! I would say this is not a good one to take on. We'll want to do this when conda-store drops support for python 3.10. We're not ready to do that just yet. Thanks! @soapy1
Ok! No worries.
Context
datetime.datetime.utcnow
is deprecated after python 3.10. It should be replaced withdatetime.datetime.now(datetime.UTC)
. Once we drop python 3.10 support, we will be able to replace all instances ofdatetime.datetime.utcnow()
withdatetime.datetime.now(datetime.UTC)
.Follow up to #1013
Value and/or benefit
The text was updated successfully, but these errors were encountered: