From 9c27481b4cf588a62358f51dbe700cf919c718bc Mon Sep 17 00:00:00 2001 From: njobrien <59174199@users.noreply.github.com> Date: Fri, 6 Oct 2023 10:39:37 -0500 Subject: [PATCH] CodeSpaceUpdates Update to Python 3.11 Manually require update urllib3 --- .devcontainer.json | 3 ++- requirements.txt | 5 +++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.devcontainer.json b/.devcontainer.json index 727043c..2cd8236 100644 --- a/.devcontainer.json +++ b/.devcontainer.json @@ -1,6 +1,7 @@ { "name": "njobrien1006/hass_traeger", - "image": "mcr.microsoft.com/vscode/devcontainers/python:0-3.10-bullseye", + //Change Me for different CodeSpace Python Version + "image": "mcr.microsoft.com/vscode/devcontainers/python:0-3.11-bullseye", "postCreateCommand": "scripts/setup", "forwardPorts": [ 8123 diff --git a/requirements.txt b/requirements.txt index e6e2d0a..dea9be6 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,5 @@ colorlog==6.7.0 homeassistant>=2023.2.0 -pip>=21.0,<23.2 -paho.mqtt==1.6.1 \ No newline at end of file +pip>=21.0 +paho.mqtt==1.6.1 +urllib3>=2.0.3 \ No newline at end of file