Compare commits
No commits in common. "135f4fe65eeaf2e734c5eb27e767a9eab09b5c39" and "5b1656b7aa2ed424be6be971be55031d1bb5077e" have entirely different histories.
135f4fe65e
...
5b1656b7aa
1 changed files with 6 additions and 9 deletions
15
py.pypi.sh
15
py.pypi.sh
|
@ -7,8 +7,6 @@ set \
|
|||
\
|
||||
"uv" \
|
||||
\
|
||||
"Cython" \
|
||||
\
|
||||
"pelican" \
|
||||
\
|
||||
"hatch" \
|
||||
|
@ -47,18 +45,13 @@ for version in "os" "3.12" "3.11" "3.10" "pypy3.10"; do
|
|||
export OLD_PATH="${PATH}"
|
||||
export PATH="${VIRTUAL_ENV}/bin:${PATH}"
|
||||
|
||||
sub="${root}"
|
||||
# sub="${root}/${version}"
|
||||
sub="${root}/${version}"
|
||||
|
||||
python3 -m pip \
|
||||
download \
|
||||
--dest "${sub}" \
|
||||
"${@}"
|
||||
|
||||
export PATH="${OLD_PATH}"
|
||||
unset OLD_PATH VIRTUAL_ENV
|
||||
done
|
||||
|
||||
prefix="Name: "
|
||||
for wheel in "${sub}/"*; do
|
||||
rm --force --recursive "${tmp}"
|
||||
|
@ -99,7 +92,11 @@ done
|
|||
echo "${name}"
|
||||
simple="${sub}/simple/${name}"
|
||||
mkdir --parents "${simple}"
|
||||
mv -i "${wheel}" "${simple}/"
|
||||
mv -i "${sub}/${file_name}-"* "${simple}/"
|
||||
done
|
||||
|
||||
export PATH="${OLD_PATH}"
|
||||
unset OLD_PATH VIRTUAL_ENV
|
||||
done
|
||||
|
||||
rm --force --recursive "${tmp}"
|
||||
|
|
Loading…
Reference in a new issue