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
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).
According to the message, the recommended fix is to use timezone-aware objects with datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
The text was updated successfully, but these errors were encountered:
The following line of code is triggering a deprecation warning:
python-scrapinghub/scrapinghub/hubstorage/serialization.py
Line 5 in b3b2e1d
According to the message, the recommended fix is to use timezone-aware objects with
datetime.datetime.fromtimestamp(timestamp, datetime.UTC)
.The text was updated successfully, but these errors were encountered: