mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-27 14:57:41 +00:00
Only pin down lxml version for PyPy
This commit is contained in:
parent
c0f773214f
commit
4e8dbe9598
1 changed files with 7 additions and 2 deletions
9
setup.py
9
setup.py
|
|
@ -11,6 +11,7 @@ Vdirsyncer is a synchronization tool for vdir. See the README for more details.
|
||||||
|
|
||||||
|
|
||||||
from setuptools import find_packages, setup
|
from setuptools import find_packages, setup
|
||||||
|
import platform
|
||||||
|
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
|
|
@ -37,8 +38,12 @@ setup(
|
||||||
'click-threading',
|
'click-threading',
|
||||||
# https://github.com/kennethreitz/requests/issues/2930
|
# https://github.com/kennethreitz/requests/issues/2930
|
||||||
'requests !=2.9.0',
|
'requests !=2.9.0',
|
||||||
# https://github.com/untitaker/vdirsyncer/issues/298
|
'lxml >=3.1' + (
|
||||||
'lxml >=3.1, <=3.4.4',
|
# https://github.com/untitaker/vdirsyncer/issues/298
|
||||||
|
', <=3.4.4'
|
||||||
|
if platform.python_implementation() == 'PyPy'
|
||||||
|
else ''
|
||||||
|
),
|
||||||
# https://github.com/sigmavirus24/requests-toolbelt/pull/28
|
# https://github.com/sigmavirus24/requests-toolbelt/pull/28
|
||||||
'requests_toolbelt >=0.5.0',
|
'requests_toolbelt >=0.5.0',
|
||||||
'atomicwrites'
|
'atomicwrites'
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue