File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ if ($env:PYPY -or $env:PYPY3) {
1010 $env: PYPY = $env: PYPY + ' -win32'
1111 $env: PYTHON = ' C:\' + $env: PYPY + ' \' + $env: PYPY_EXE
1212 $env: PATH += ' ;' + ' C:\' + $env: PYPY + ' \'
13- $PYPY_DOWNLOAD = ' https://bitbucket. org/pypy/pypy/downloads /' + $env: PYPY + ' .zip'
13+ $PYPY_DOWNLOAD = ' https://downloads.python. org/pypy/' + $env: PYPY + ' .zip'
1414 Invoke-WebRequest $PYPY_DOWNLOAD - OutFile C:\pypy.zip
1515 & ' 7z' x C:\pypy.zip - oC:\
1616 & $env: PYTHON - m ensurepip
@@ -22,6 +22,6 @@ if ($env:WEB_PYTHON) {
2222 $env: PYTHON = ' C:\UserPython\python.exe'
2323}
2424& $env: PYTHON - m pip install -- disable-pip - version- check -- no- warn- script- location " virtualenv>=20"
25- & $env: PYTHON - m virtualenv -- download venv
25+ & $env: PYTHON - m virtualenv venv
2626
2727if ($LastExitCode -ne 0 ) { $host.SetShouldExit ($LastExitCode ) }
Original file line number Diff line number Diff line change @@ -26,11 +26,9 @@ environment:
2626 platform : x64
2727 - PYTHON : C:\Python38\python.exe
2828 platform : Any CPU
29- - PYPY3 : pypy3.6-v7.2.0
29+ - PYPY3 : pypy3.6-v7.3.2
3030 platform : Any CPU
31- - PYPY3 : pypy3.6-v7.3.0
32- platform : Any CPU
33- - PYPY3 : pypy3.6-v7.3.1
31+ - PYPY3 : pypy3.7-v7.3.2
3432 platform : Any CPU
3533
3634matrix :
@@ -48,7 +46,7 @@ install:
4846- cmd : " set PATH=%APPVEYOR_BUILD_FOLDER%\\ venv\\ bin;%PATH%"
4947- cmd : " set PATH=%PATH%;C:\\ MinGW\\ bin"
5048- cmd : " python --version"
51- - cmd : " pip --version "
49+ - cmd : " python -m pip install --upgrade pip "
5250- cmd : " pip install --requirement requirements.txt"
5351- cmd : " python -O setup.py build sdist develop bdist_wheel %EXTRA_SETUP_ARGS%"
5452build : off
You can’t perform that action at this time.
0 commit comments