mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-03-25 08:55:50 +00:00
Specify minimum versions for dependencies
This commit is contained in:
parent
e270e78bb3
commit
9290b9132f
2 changed files with 2 additions and 7 deletions
|
|
@ -9,8 +9,3 @@ Troubleshooting
|
|||
supply it as a parameter to ``verify`` in your config file, e.g.::
|
||||
|
||||
verify = /usr/share/ca-certificates/cacert.org/cacert.org_root.crt
|
||||
|
||||
- **During sync an error occurs: TypeError: request() got an unexpected keyword
|
||||
argument 'verify'**
|
||||
|
||||
You need to update your version of requests.
|
||||
|
|
|
|||
4
setup.py
4
setup.py
|
|
@ -39,8 +39,8 @@ setup(
|
|||
},
|
||||
install_requires=[
|
||||
'click>=3.1',
|
||||
'requests',
|
||||
'lxml',
|
||||
'requests>=2.1',
|
||||
'lxml>=3.0',
|
||||
'icalendar>=3.6',
|
||||
'requests_toolbelt>=0.3.0'
|
||||
],
|
||||
|
|
|
|||
Loading…
Reference in a new issue