File tree Expand file tree Collapse file tree 3 files changed +7
-5
lines changed
Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -10,14 +10,14 @@ tasklib
1010tasklib is a Python library for interacting with taskwarrior _ databases, using
1111a queryset API similar to that of Django's ORM.
1212
13- Supports Python 3.5 and above, with taskwarrior 2.1.x and above.
14- Older versions of taskwarrior are untested and may not work.
15-
1613Requirements
1714------------
1815
16+ * Python 3.5 or above
1917* taskwarrior _ v2.1.x or above.
2018
19+ Older versions of taskwarrior are untested and may not work.
20+
2121Installation
2222------------
2323
@@ -32,7 +32,7 @@ tasklib has a similar API to that of Django's ORM::
3232
3333 >>> from tasklib import TaskWarrior
3434
35- >>> tw = TaskWarrior('/home/rob /.task')
35+ >>> tw = TaskWarrior('~ /.task')
3636 >>> tasks = tw.tasks.pending()
3737 >>> tasks
3838 ['Tidy the house', 'Learn German']
Original file line number Diff line number Diff line change 22
33install_requirements = ['pytz' , 'tzlocal' ]
44
5- version = '2.2.0 '
5+ version = '2.2.1 '
66
77try :
88 import importlib
Original file line number Diff line number Diff line change 11from .backends import TaskWarrior
22from .task import Task
33from .serializing import local_zone
4+
5+ __version__ = '2.2.1'
You can’t perform that action at this time.
0 commit comments