jenkins-bot has submitted this change. ( https://gerrit.wikimedia.org/r/c/pywikibot/core/+/639915 )
Change subject: [bugfix] Use venv instead of virtualenv ......................................................................
[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(-)
Approvals: Xqt: Looks good to me, approved jenkins-bot: Verified
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