Hashar has uploaded a new change for review. ( https://gerrit.wikimedia.org/r/381492 )
Change subject: Support python 3.5 test, bump beautifulsoup4 ...................................................................... Support python 3.5 test, bump beautifulsoup4 Add a new environment py35 for people not having py34. Beautifulsoup4 4.4.0 added support for Python3.5, so bump the requirement. Instruct tox to gracefully skip in case an interpreter is missing. Remove the python3 from testenv, that is not needed. Tox set it up for us based on the py34/py35 names. Change-Id: I00c251348391f7f1db9329c99440df8bbb2e278d --- M requirements.txt M tox.ini 2 files changed, 4 insertions(+), 5 deletions(-) git pull ssh://gerrit.wikimedia.org:29418/labs/tools/wikibugs2 refs/changes/92/381492/1 diff --git a/requirements.txt b/requirements.txt index 6001a7a..834f1be 100644 --- a/requirements.txt +++ b/requirements.txt @@ -4,4 +4,4 @@ requests==2.4.3 asyncio-redis==0.12.3 irc3==0.5.1 -beautifulsoup4==4.3.2 +beautifulsoup4==4.4.0 diff --git a/tox.ini b/tox.ini index c846395..f2b44d1 100644 --- a/tox.ini +++ b/tox.ini @@ -1,13 +1,13 @@ [tox] -# Ensure 1.6+ is used to support 'skipsdist' -minversion = 1.6 +# 1.7.2 for skip_missing_interpreters +minversion = 1.7.2 # Do not run install command skipsdist = True # Environements to execute when invoking 'tox' -envlist = flake8,py34 +envlist = flake8,py34,py35 [testenv:flake8] commands = flake8 @@ -17,7 +17,6 @@ [testenv] commands = ./test_channels_yaml.py deps = PyYAML -basepython = python3 [flake8] exclude = .tox -- To view, visit https://gerrit.wikimedia.org/r/381492 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I00c251348391f7f1db9329c99440df8bbb2e278d Gerrit-PatchSet: 1 Gerrit-Project: labs/tools/wikibugs2 Gerrit-Branch: master Gerrit-Owner: Hashar <[email protected]> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
