datetime.utcfromtimestamp was deprecated in python 3.12. It is used in this project in
We should replace
datetime.utcfromtimestamp(self.installed_at)
In favor of
datetime.fromtimestamp(self.installed_at, tz=timezone.utc)
Unit test should be added to ensure backwards compatibility
Requirements
For general questions/issues about Slack API platform or its server-side, could you submit questions at https://my.slack.com/help/requests/new instead. 🙇
Please read the Contributing guidelines and Code of Conduct before creating this issue or pull request. By submitting, you are agreeing to those rules.