LiquidFun / aoc_tiles

Fancy Advent of Code README tiles showing the completion status of the challenges per day
Apache License 2.0
26 stars 3 forks source link

Minimum Py version #7

Closed tbeu closed 1 month ago

tbeu commented 1 month ago

Does not work with Python < 3.11 due to missing datetime.UTC, especially not with Python 3.8 as specified in the pyproject.toml.

For example, Python 3.10.8

>>> import datetime
>>> datetime.datetime.now(datetime.UTC)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: module 'datetime' has no attribute 'UTC'
LiquidFun commented 1 month ago

Thanks for letting me know. Not sure how that slipped. Should be fixed in 0.6.1. Let me know if you have other issues.