From c9700f14f736fdfd8077f29ab27428717ae2ab81 Mon Sep 17 00:00:00 2001
From: Mark Gibbs <delsim@users.noreply.github.com>
Date: Fri, 28 Oct 2022 21:55:17 -0700
Subject: [PATCH] Relax historical constraints and move to Python 3.10 as base
 version (#420)

Co-authored-by: delsim <dev@gibbsconsulting.ca>
---
 demo/demo/bootstrap_app.py | 2 +-
 make_env                   | 2 +-
 requirements.txt           | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/demo/demo/bootstrap_app.py b/demo/demo/bootstrap_app.py
index ab66b02..3d8a3d6 100644
--- a/demo/demo/bootstrap_app.py
+++ b/demo/demo/bootstrap_app.py
@@ -24,7 +24,7 @@ SOFTWARE.
 
 import dash
 import dash_bootstrap_components as dbc
-import dash_html_components as html
+from dash import html
 
 from django_plotly_dash import DjangoDash
 
diff --git a/make_env b/make_env
index 7523521..d894f50 100755
--- a/make_env
+++ b/make_env
@@ -6,7 +6,7 @@
 set -e
 #
 # Default to 3.8 but allow override
-DEFAULT_PYTHON_VER=3.8
+DEFAULT_PYTHON_VER=3.10
 PYTHON_VER=${1:-$DEFAULT_PYTHON_VER}
 #
 python${PYTHON_VER} -m venv env
diff --git a/requirements.txt b/requirements.txt
index a2d5787..8907f73 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -2,7 +2,7 @@ dash>=2.0
 plotly
 dpd-components
 
-dash-bootstrap-components<1.0
+dash-bootstrap-components
 
 channels<3.0
 Django>=2.2,<4.0.0
-- 
GitLab