Compare commits
No commits in common. "7aedeacab3c49ea3cc7f67974633d8e53bfc5b1a" and "03bc5549bd689c2d94ed75edaf9ab5056a8b6672" have entirely different histories.
7aedeacab3
...
03bc5549bd
2 changed files with 3 additions and 14 deletions
|
@ -18,15 +18,11 @@ echo "${path}"
|
|||
cat "${path}"
|
||||
|
||||
for url in $(jq -r ".. | objects | .url?" "${path}" |
|
||||
grep "\(/20241008/\|/pypy3.10-v7.3.17\)" |
|
||||
grep "\(/20240909/\|/pypy3.10-v7.3.17\)" |
|
||||
grep --invert-match "\(armv7\|ppc64le\|s390x\)" |
|
||||
grep --invert-match "\(apple-darwin\|macos\|win64\|windows-msvc\)"); do
|
||||
case "$(basename "${url}")" in
|
||||
cpython-3.13* |
|
||||
cpython-3.12* |
|
||||
cpython-3.11* |
|
||||
cpython-3.10* |
|
||||
pypy3.10*)
|
||||
cpython-3.12* | cpython-3.11* | cpython-3.10* | pypy3.10*)
|
||||
file="$(basename "${url}" | sed "s|%2B|+|g")"
|
||||
dir="$(dirname "${url}")"
|
||||
date="$(basename "${dir}")"
|
||||
|
|
|
@ -43,14 +43,7 @@ tmp="${root}/tmp"
|
|||
|
||||
rm --force --recursive "${root}"
|
||||
|
||||
for version in \
|
||||
"os" \
|
||||
"python3.13" \
|
||||
"python3.12" \
|
||||
"python3.11" \
|
||||
"python3.10" \
|
||||
"pypy3.10" \
|
||||
; do
|
||||
for version in "os" "python3.12" "python3.11" "python3.10" "pypy3.10"; do
|
||||
export VIRTUAL_ENV="/prj/venv/${version}"
|
||||
export OLD_PATH="${PATH}"
|
||||
export PATH="${VIRTUAL_ENV}/bin:${PATH}"
|
||||
|
|
Loading…
Reference in a new issue