jenkins-bot has submitted this change. ( https://gerrit.wikimedia.org/r/c/pywikibot/core/+/612139 )
Change subject: [tests] Don't try to install request security patch for Python 2.7 ......................................................................
[tests] Don't try to install request security patch for Python 2.7
Change-Id: I19ccbb29c11ccc7735d2e4b19167442fe5529302 --- M .appveyor.yml M .travis.yml 2 files changed, 1 insertion(+), 3 deletions(-)
Approvals: Zhuyifei1999: Looks good to me, approved jenkins-bot: Verified
diff --git a/.appveyor.yml b/.appveyor.yml index 6cf8427..bca7a15 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -86,7 +86,6 @@ - env\Scripts\activate.bat - pip install -r dev-requirements.txt - pip install -r requirements.txt - - pip install -e .[security]
build: off
diff --git a/.travis.yml b/.travis.yml index 7e4cbbd..47cd664 100644 --- a/.travis.yml +++ b/.travis.yml @@ -51,9 +51,8 @@ - pip install -r dev-requirements.txt
script: - # Install security packages for requests to support HTTPS in site_detect - if [[ "$PYSETUP_TEST_EXTRAS" != '1' ]]; then - pip install -e .[mwoauth,security]; + pip install -e .[mwoauth]; fi
- mkdir ~/.pywikibot
pywikibot-commits@lists.wikimedia.org