jenkins-bot submitted this change.

View Change

Approvals: Xqt: Looks good to me, approved jenkins-bot: Verified
[bugfix] Use venv instead of virtualenv

Every Python comes with its own buildin venv.

Bug: T266964
Change-Id: I7b31bc844b7aa0890274a215bc3bf9afd73f4835
---
M .appveyor.yml
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/.appveyor.yml b/.appveyor.yml
index bd40861..f4b35a9 100644
--- a/.appveyor.yml
+++ b/.appveyor.yml
@@ -81,8 +81,7 @@
if (-not(Test-Path($env:PYTHON))) {
iex $wc.DownloadString($env:APPVEYOR_PYTHON_URL + 'install.ps1')
}
- - pip install virtualenv
- - virtualenv env
+ - venv env
- env\Scripts\activate.bat
- pip install -r dev-requirements.txt
- pip install -r requirements.txt

To view, visit change 639915. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: pywikibot/core
Gerrit-Branch: master
Gerrit-Change-Id: I7b31bc844b7aa0890274a215bc3bf9afd73f4835
Gerrit-Change-Number: 639915
Gerrit-PatchSet: 1
Gerrit-Owner: Xqt <info@gno.de>
Gerrit-Reviewer: Xqt <info@gno.de>
Gerrit-Reviewer: jenkins-bot
Gerrit-MessageType: merged