diff options
author | mattip <matti.picus@gmail.com> | 2021-01-14 09:48:32 +0200 |
---|---|---|
committer | mattip <matti.picus@gmail.com> | 2021-01-14 09:48:32 +0200 |
commit | a968a6b55713c5ec956a060169ae4317ca2c3110 (patch) | |
tree | c0960f1c1960be04077166450541e7fff790c02b | |
parent | fde2e536a1c1a1ba90727958f0b6da34fa53db1f (diff) | |
download | numpy-a968a6b55713c5ec956a060169ae4317ca2c3110.tar.gz |
BLD: try a pypy37 windows 64-bit build
-rw-r--r-- | azure-pipelines.yml | 5 | ||||
-rw-r--r-- | azure-steps-windows.yml | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 5f7afdaaf..4979452e8 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -206,6 +206,11 @@ stages: PYTHON_ARCH: 'x64' TEST_MODE: full BITS: 64 + PyPy37-64bit-full: + PYTHON_VERSION: 'PyPy3.7' + PYTHON_ARCH: 'x64' + TEST_MODE: full + BITS: 64 Python38-32bit-fast: PYTHON_VERSION: '3.8' PYTHON_ARCH: 'x86' diff --git a/azure-steps-windows.yml b/azure-steps-windows.yml index 28762f5d9..6a69db753 100644 --- a/azure-steps-windows.yml +++ b/azure-steps-windows.yml @@ -6,7 +6,7 @@ steps: architecture: $(PYTHON_ARCH) condition: not(contains(variables['PYTHON_VERSION'], 'PyPy')) - powershell: | - $url = "http://buildbot.pypy.org/nightly/py3.6/pypy-c-jit-latest-win32.zip" + $url = "http://buildbot.pypy.org/nightly/py3.7/pypy-c-jit-latest-win64.zip" $output = "pypy.zip" $wc = New-Object System.Net.WebClient $wc.DownloadFile($url, $output) |