Files
aprsd/tests
hemna 08deaab94e fix: replace deprecated datetime.utcfromtimestamp()/utcnow() calls (#268)
Both APIs are deprecated since Python 3.12 and scheduled for removal.

- aprsd/packets/core.py: datetime.utcfromtimestamp(ts)
    -> datetime.fromtimestamp(ts, tz=timezone.utc)

- aprsd/plugins/time.py: pytz.datetime.datetime.utcnow()
    -> datetime.now(timezone.utc).replace(tzinfo=None)
  (naive UTC returned to preserve pytz.utc.localize() contract)

- tests/plugins/test_time.py: same fix in test setup

Closes #249
2026-08-28 14:41:36 -04:00
..
2025-12-09 17:20:23 -05:00
2026-01-06 18:57:54 -05:00
2025-12-09 17:20:23 -05:00
2026-01-05 17:00:03 -05:00