jenkins-bot has submitted this change. ( https://gerrit.wikimedia.org/r/c/pywikibot/core/+/753032 )
Change subject: [deps] Update setuptools dependency ......................................................................
[deps] Update setuptools dependency
setuptools 50.3 still works with Python 3.5
Change-Id: I6232ca48cb3a8e65d41aaa28d9dca75a6620f6fc --- M requirements.txt M setup.py 2 files changed, 5 insertions(+), 4 deletions(-)
Approvals: Xqt: Looks good to me, approved jenkins-bot: Verified
diff --git a/requirements.txt b/requirements.txt index e74de65..69dc8da 100644 --- a/requirements.txt +++ b/requirements.txt @@ -22,8 +22,8 @@ requests>=2.20.1 ; python_version >= '3.6' setuptools>=48.0.0 ; python_version >= '3.10' setuptools>=38.5.2 ; python_version >= '3.7' and python_version < '3.10' -setuptools>=20.8.1 ; python_version >= '3.6' and python_version < '3.7' -setuptools>=20.8.1, !=50.0.0, <50.2.0 ; python_version < '3.6' +setuptools>=20.8.1, <59.7.0 ; python_version >= '3.6' and python_version < '3.7' +setuptools>=20.8.1, !=50.0.0, <51.0.0 ; python_version < '3.6'
# MediaWiki markup parser # mwparserfromhell is default, wikitextparser can be used instead diff --git a/setup.py b/setup.py index 6c2323f..a2c976d 100644 --- a/setup.py +++ b/setup.py @@ -119,8 +119,9 @@ # PEP 440 'setuptools>=48.0.0 ; python_version >= "3.10"', 'setuptools>=38.5.2 ; python_version >= "3.7" and python_version < "3.10"', - 'setuptools>=20.8.1 ; python_version >= "3.6" and python_version < "3.7"', - 'setuptools>=20.8.1, !=50.0.0, <50.2.0 ; python_version < "3.6"', + 'setuptools>=20.8.1, <59.7.0 ' + '; python_version >= "3.6" and python_version < "3.7"', + 'setuptools>=20.8.1, !=50.0.0, <51.0.0 ; python_version < "3.6"', ] # in addition either mwparserfromhell or wikitextparser is required
pywikibot-commits@lists.wikimedia.org