Skip to content

Commit

Permalink
[deps] Update setuptools dependency
Browse files Browse the repository at this point in the history
setuptools 50.3 still works with Python 3.5

Change-Id: I6232ca48cb3a8e65d41aaa28d9dca75a6620f6fc
  • Loading branch information
xqt committed Jan 11, 2022
1 parent 38aceb3 commit ccf944d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ requests>=2.20.1, < 2.26.0; python_version < '3.6'
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
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,9 @@ def python_is_supported():
# 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

Expand Down

0 comments on commit ccf944d

Please sign in to comment.