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" \
|
"uv" \
|
||||||
\
|
\
|
||||||
"Cython" \
|
|
||||||
\
|
|
||||||
"pelican" \
|
"pelican" \
|
||||||
\
|
\
|
||||||
"hatch" \
|
"hatch" \
|
||||||
|
@ -47,18 +45,13 @@ for version in "os" "3.12" "3.11" "3.10" "pypy3.10"; do
|
||||||
export OLD_PATH="${PATH}"
|
export OLD_PATH="${PATH}"
|
||||||
export PATH="${VIRTUAL_ENV}/bin:${PATH}"
|
export PATH="${VIRTUAL_ENV}/bin:${PATH}"
|
||||||
|
|
||||||
sub="${root}"
|
sub="${root}/${version}"
|
||||||
# sub="${root}/${version}"
|
|
||||||
|
|
||||||
python3 -m pip \
|
python3 -m pip \
|
||||||
download \
|
download \
|
||||||
--dest "${sub}" \
|
--dest "${sub}" \
|
||||||
"${@}"
|
"${@}"
|
||||||
|
|
||||||
export PATH="${OLD_PATH}"
|
|
||||||
unset OLD_PATH VIRTUAL_ENV
|
|
||||||
done
|
|
||||||
|
|
||||||
prefix="Name: "
|
prefix="Name: "
|
||||||
for wheel in "${sub}/"*; do
|
for wheel in "${sub}/"*; do
|
||||||
rm --force --recursive "${tmp}"
|
rm --force --recursive "${tmp}"
|
||||||
|
@ -99,7 +92,11 @@ done
|
||||||
echo "${name}"
|
echo "${name}"
|
||||||
simple="${sub}/simple/${name}"
|
simple="${sub}/simple/${name}"
|
||||||
mkdir --parents "${simple}"
|
mkdir --parents "${simple}"
|
||||||
mv -i "${wheel}" "${simple}/"
|
mv -i "${sub}/${file_name}-"* "${simple}/"
|
||||||
done
|
done
|
||||||
|
|
||||||
|
export PATH="${OLD_PATH}"
|
||||||
|
unset OLD_PATH VIRTUAL_ENV
|
||||||
|
done
|
||||||
|
|
||||||
rm --force --recursive "${tmp}"
|
rm --force --recursive "${tmp}"
|
||||||
|
|
Loading…
Reference in a new issue