setup.py: use feedparser>=6 with python 3.9 (#52263)

This commit is contained in:
Benjamin Dauvergne 2021-03-19 22:41:43 +01:00
parent c6c87ccb4b
commit 631106097d
2 changed files with 1 additions and 2 deletions

View File

@ -163,7 +163,7 @@ setup(
'django>=1.11, <2.3',
'django-ckeditor<4.5.4',
'gadjo>=0.53',
'feedparser',
'feedparser<6' if sys.version_info < (3, 9) else 'feedparser>=6',
'django-jsonfield',
'requests',
'XStatic-Leaflet',

View File

@ -16,7 +16,6 @@ passenv =
deps =
django111: django>=1.11,<1.12
django22: django>=2.2,<2.3
feedparser<6
pywebpush
pytest-cov
pytest-django