Skip to content

Commit 099cb7e

Browse files
authored
Merge pull request #50 from MTrab/feature/vector-branding-devcontainer-python314
Add Vector brand assets and bump devcontainer image to Python 3.14
2 parents 181cc10 + d1ec8f4 commit 099cb7e

11 files changed

Lines changed: 21 additions & 21 deletions

File tree

.devcontainer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Vector",
3-
"image": "mcr.microsoft.com/devcontainers/python:3.13-bookworm",
3+
"image": "mcr.microsoft.com/devcontainers/python:3.14-bookworm",
44
"postCreateCommand": "scripts/setup",
55
"appPort": [
66
"9125:8123"
@@ -47,4 +47,4 @@
4747
"source=${localWorkspaceFolder}/../pyddlvector,target=/development/github/homeassistant/pyddlvector,type=bind",
4848
"source=gh-config,target=/home/vscode/.config/gh,type=volume"
4949
]
50-
}
50+
}
96.6 KB
Loading
323 KB
Loading
69.4 KB
Loading
223 KB
Loading
96.6 KB
Loading
323 KB
Loading
69 KB
Loading
222 KB
Loading

scripts/upgrade-dev

100644100755
Lines changed: 1 addition & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,8 @@
22

33
set -e
44

5-
# Check versions
6-
echo "Fetching available Home Assistant versions..."
7-
AVAILABLE_VERSIONS=$(curl -s https://pypi.org/pypi/homeassistant/json | jq -r '.releases | keys | .[]' | sort -V)
8-
9-
if [[ -z "$AVAILABLE_VERSIONS" ]]; then
10-
echo "Error: Could not fetch available versions."
11-
exit 1
12-
fi
13-
14-
# Show available versions
15-
echo "Available versions:"
16-
echo "$AVAILABLE_VERSIONS"
17-
18-
read -p "What HA Version? " VERSION
19-
echo "Installing ${my_var}!"
20-
21-
225
cd "$(dirname "$0")/.."
236

24-
python3 -m pip install homeassistant==$VERSION
7+
python3 -m pip install homeassistant
258

269
echo "Done."

0 commit comments

Comments
 (0)