testing release system

This commit is contained in:
Joey Eamigh
2023-06-21 17:15:18 -04:00
parent 89262da6d3
commit 03dca844cb
9 changed files with 182 additions and 25 deletions

View File

@@ -1,7 +1,8 @@
# Check for python3 or python
if (Get-Command "python3") {
$python = "python3"
} else {
}
else {
$python = "python"
}
@@ -15,4 +16,4 @@ if (-Not (Test-Path "./.venv")) {
# Install required packages
& $python -m pip install --upgrade pip
& $python -m pip install -r requirements.txt
& $python -m pip install -r client/requirements.txt