jenkins-bot has submitted this change and it was merged. ( https://gerrit.wikimedia.org/r/513107 )
Change subject: dev-requirements.txt: Do not use python_full_version ......................................................................
dev-requirements.txt: Do not use python_full_version
python_full_version acts weirdly, specially for prelease versions.
Bug: T224370 Change-Id: Idc01a88a8271ef43cfc85b7a09dc94a34e89b2cf --- M dev-requirements.txt 1 file changed, 3 insertions(+), 3 deletions(-)
Approvals: Dvorapa: Looks good to me, approved jenkins-bot: Verified
diff --git a/dev-requirements.txt b/dev-requirements.txt index 3415ee9..e5e737c 100644 --- a/dev-requirements.txt +++ b/dev-requirements.txt @@ -1,14 +1,14 @@ # This is a PIP 6+ requirements file for development dependencies # -pytest>=3.6.0,<5.0.0 ; python_full_version < '3.5' -pytest>=3.6.0 ; python_full_version >= '3.5' +pytest>=3.6.0,<5.0.0 ; python_version < '3.5' +pytest>=3.6.0 ; python_version >= '3.5' pytest-timeout pytest-runner pytest-cov>=2.6.1 pytest-attrib>=0.1.3 # pytest-httpbin needs httpbin needs werkzeug >=0.14.1 # but werkzeug > 0.15.2 fails for Python 3.8 -werkzeug != 0.15.2, != 0.15.3 ; python_full_version >= '3.8' +werkzeug != 0.15.2, != 0.15.3 ; python_version >= '3.8' pytest-httpbin
six
pywikibot-commits@lists.wikimedia.org