File tree 2 files changed +5
-4
lines changed
2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -212,7 +212,7 @@ jobs:
212
212
fetch-depth : 0
213
213
- uses : actions/setup-python@v2
214
214
with :
215
- python-version : pypy-3.8-v7.3.6rc1
215
+ python-version : pypy-3.8-v7.3.7
216
216
- uses : ./.github/actions
217
217
218
218
sdist :
Original file line number Diff line number Diff line change 6
6
architecture : $(PYTHON_ARCH)
7
7
condition : not(contains(variables['PYTHON_VERSION'], 'PyPy'))
8
8
- 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"
10
11
$output = "pypy.zip"
11
12
$wc = New-Object System.Net.WebClient
12
13
$wc.DownloadFile($url, $output)
13
14
echo "downloaded $url to $output"
14
15
mkdir pypy3
15
16
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
18
19
$pypypath = Join-Path (Get-Item .).FullName pypy3
19
20
$env:Path = $pypypath + ";" + $env:Path
20
21
setx PATH $env:Path
You can’t perform that action at this time.
0 commit comments