Projet

Général

Profil

0001-setup-relax-feedparser-version-for-python-3.9-49180.patch

Nicolas Roche, 08 décembre 2020 09:16

Télécharger (1,58 ko)

Voir les différences:

Subject: [PATCH] setup: relax feedparser version for python 3.9 (#49180)

 setup.py | 2 +-
 tox.ini  | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)
setup.py
145 145
        'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
146 146
        'Operating System :: OS Independent',
147 147
        'Programming Language :: Python',
148 148
        'Programming Language :: Python :: 3',
149 149
    ],
150 150
    install_requires=['django>=1.11, <2.3',
151 151
        'django-ckeditor<4.5.4',
152 152
        'gadjo>=0.53',
153
        'feedparser<6',
153
        'feedparser',
154 154
        'django-jsonfield',
155 155
        'requests',
156 156
        'XStatic-Leaflet',
157 157
        'XStatic-Leaflet-GestureHandling',
158 158
        'XStatic-Leaflet-MarkerCluster',
159 159
        'XStatic_OpenSans',
160 160
        'XStatic_roboto-fontface>=0.5.0.0',
161 161
        'eopayment>=1.60',
tox.ini
11 11
  SETUPTOOLS_USE_DISTUTILS=stdlib
12 12
  coverage: COVERAGE=--cov-report xml --cov-report html --cov=combo/
13 13
  pg: DB_ENGINE=django.db.backends.postgresql_psycopg2
14 14
passenv =
15 15
  BRANCH_NAME
16 16
deps =
17 17
  django111: django>=1.11,<1.12
18 18
  django22: django>=2.2,<2.3
19
  feedparser<6
19 20
  pywebpush
20 21
  pytest-cov
21 22
  pytest-django
22 23
  pytest-freezegun
23 24
  pytest!=5.3.3
24 25
  WebTest
25 26
  mock<4
26 27
  httmock
27
-