diff options
author | Tobias Brox <tobias@redpill-linpro.com> | 2020-05-05 16:07:34 +0200 |
---|---|---|
committer | Tobias Brox <tobias@redpill-linpro.com> | 2020-05-05 16:07:34 +0200 |
commit | 863bf6f280d6d714c46deb55c93e99106083e8cc (patch) | |
tree | 691673dbf49a724fb4608bc26c04c96ac7b82d03 | |
parent | 7e0ed2c098ec9897d30f30061bbac17913726229 (diff) | |
download | calendar-cli-863bf6f280d6d714c46deb55c93e99106083e8cc.zip |
the python-caldav version 0.5.0 had issues with time stamps, and calendar-cli isn't compatible with 0.5.0 any more. Fixes https://github.com/tobixen/calendar-cli/issues/31 and many others
-rw-r--r-- | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -40,7 +40,7 @@ setup( scripts=['calendar-cli.py', 'calendar-cli'], install_requires=[ 'icalendar', - 'caldav>=0.5.0', + 'caldav>=0.6.2', 'pytz', 'tzlocal', 'six' |