From 7da34289233ff4e320426f54ac0f275499df0f1a Mon Sep 17 00:00:00 2001 From: Daniel McKnight Date: Fri, 10 Jan 2025 12:01:57 -0800 Subject: [PATCH] Updates Dockerfile to use Python3.10 to close #62 Updates ovos-bus-client dependency to allow 0.1+ Adds missing ovos-config dependency which was previously just inherited from other dependencies --- Dockerfile | 2 +- requirements/requirements.txt | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 110897e..ddaf471 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.8-slim +FROM python:3.10-slim # Label for vendor LABEL vendor=neon.ai \ diff --git a/requirements/requirements.txt b/requirements/requirements.txt index c1de4b9..f2148f8 100644 --- a/requirements/requirements.txt +++ b/requirements/requirements.txt @@ -3,4 +3,5 @@ click-default-group~=1.2 neon-utils~=1.0 pyyaml>=5.4,<7.0.0 neon-mq-connector~=0.7,>=0.7.1 -ovos-bus-client~=0.0.3 \ No newline at end of file +ovos-bus-client~=0.0,>=0.0.3 +ovos-config~=0.0 \ No newline at end of file