From be8b00a614256841b6b341d0b82514f4266d2b29 Mon Sep 17 00:00:00 2001 From: delsim Date: Wed, 9 Oct 2024 18:56:07 -0700 Subject: [PATCH] Restrict Dash version to less than 2.13 --- 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 0302a32..0c5af64 100644 --- a/django_plotly_dash/version.py +++ b/django_plotly_dash/version.py @@ -23,4 +23,4 @@ ''' -__version__ = "2.4.0" +__version__ = "2.4.1" diff --git a/requirements.txt b/requirements.txt index 072f7ce..b2ea479 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -dash>=2.0,<3.0 +dash>=2.0,<2.13 plotly dpd-components diff --git a/setup.py b/setup.py index f2c9ea6..23f9e3e 100644 --- a/setup.py +++ b/setup.py @@ -41,7 +41,7 @@ 'Documentation': 'http://django-plotly-dash.readthedocs.io/', }, install_requires = ['plotly', - 'dash>=2.0,<3.0', + 'dash>=2.0,<2.13', 'dpd-components', 'dash-bootstrap-components',