summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobias Brox <tobias@redpill-linpro.com>2020-05-05 16:07:34 +0200
committerTobias Brox <tobias@redpill-linpro.com>2020-05-05 16:07:34 +0200
commit863bf6f280d6d714c46deb55c93e99106083e8cc (patch)
tree691673dbf49a724fb4608bc26c04c96ac7b82d03
parent7e0ed2c098ec9897d30f30061bbac17913726229 (diff)
downloadcalendar-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.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index e3299b3..c70a1b8 100644
--- a/setup.py
+++ b/setup.py
@@ -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'