The current version that pip seems to pick up from pypi seems off in a couple of places.
Currently the pyproject.toml file (in the tar.gz from pypi - not on github) has version 1.30 and refers to older versions of pytz and tzlocal.
I find fewer issues when I replace pyproject.toml versions (not in github) with this:
[tool.poetry]
...
version = "2.1.1"
...
[tool.poetry.dependencies]
pytz = "2020.1"
tzlocal = "2.1"
...
A better workaround may be to remove it entirely or use git+https://github.com/robgolding/tasklib but figured you might want to know.
The current version that pip seems to pick up from pypi seems off in a couple of places.
Currently the pyproject.toml file (in the tar.gz from pypi - not on github) has version 1.30 and refers to older versions of pytz and tzlocal.
I find fewer issues when I replace pyproject.toml versions (not in github) with this:
[tool.poetry]
...
version = "2.1.1"
...
[tool.poetry.dependencies]
pytz = "2020.1"
tzlocal = "2.1"
...
A better workaround may be to remove it entirely or use git+https://github.com/robgolding/tasklib but figured you might want to know.