14 lines
243 B
PowerShell
14 lines
243 B
PowerShell
param(
|
|
[switch]$Get = $false
|
|
)
|
|
|
|
if ($Get) {
|
|
pycage get -rt 20250409 3.11.12
|
|
pycage venv upgrade-pip
|
|
}
|
|
|
|
pycage venv add -i http://localhost:8001/simple/ delta-barth
|
|
pycage compile -f -d
|
|
pycage compile -o 1 -f
|
|
pycage clean dist-info
|