From 67e86bf56d7315ddb9d5effe55239bb1115eb4f1 Mon Sep 17 00:00:00 2001 From: Mark Gibbs Date: Sun, 28 May 2023 10:34:08 -0700 Subject: [PATCH] Temporarily restrict Dash version as per #460 #461 --- django_plotly_dash/version.py | 2 +- requirements.txt | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/django_plotly_dash/version.py b/django_plotly_dash/version.py index c9f2407..12e5fcc 100644 --- a/django_plotly_dash/version.py +++ b/django_plotly_dash/version.py @@ -23,4 +23,4 @@ ''' -__version__ = "2.2.0" +__version__ = "2.2.1" diff --git a/requirements.txt b/requirements.txt index 01b3e4b..8ec915b 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -dash>=2.0 +dash>=2.0,<2.10 plotly dpd-components diff --git a/setup.py b/setup.py index 87fa98e..00fff9c 100644 --- a/setup.py +++ b/setup.py @@ -41,7 +41,7 @@ 'Documentation': 'http://django-plotly-dash.readthedocs.io/', }, install_requires = ['plotly', - 'dash>=2.0', + 'dash>=2.0,<2.10', 'dpd-components', 'dash-bootstrap-components',