Skip to content

Commit 351ce2f

Browse files
committed
TEST: use pypy3.8-v7.3.7 final versions
1 parent 4906ce8 commit 351ce2f

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/build_test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ jobs:
212212
fetch-depth: 0
213213
- uses: actions/setup-python@v2
214214
with:
215-
python-version: pypy-3.8-v7.3.6rc1
215+
python-version: pypy-3.8-v7.3.7
216216
- uses: ./.github/actions
217217

218218
sdist:

azure-steps-windows.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,16 @@ steps:
66
architecture: $(PYTHON_ARCH)
77
condition: not(contains(variables['PYTHON_VERSION'], 'PyPy'))
88
- powershell: |
9-
$url = "http://buildbot.pypy.org/nightly/py3.8/pypy-c-jit-latest-win64.zip"
9+
# $url = "http://buildbot.pypy.org/nightly/py3.8/pypy-c-jit-latest-win64.zip"
10+
$url = "https://downloads.python.org/pypy/pypy3.8-v7.3.7-win64.zip"
1011
$output = "pypy.zip"
1112
$wc = New-Object System.Net.WebClient
1213
$wc.DownloadFile($url, $output)
1314
echo "downloaded $url to $output"
1415
mkdir pypy3
1516
Expand-Archive $output -DestinationPath pypy3
16-
move pypy3/pypy-c-*/* pypy3
17-
cp pypy3/pypy3.exe pypy3/python.exe
17+
# move pypy3/pypy-c-*/* pypy3
18+
move pypy3/pypy*/* pypy3
1819
$pypypath = Join-Path (Get-Item .).FullName pypy3
1920
$env:Path = $pypypath + ";" + $env:Path
2021
setx PATH $env:Path

0 commit comments

Comments
 (0)