Skip to content

Commit d81f17a

Browse files
committed
Pin dash below 3.0.0
Dash was earlier a transitive dependency through dash-bootstrap-components, now it is a direct dependency due to pinning.
1 parent 20ab0c6 commit d81f17a

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,12 @@
2222
},
2323
install_requires=[
2424
"dash-bootstrap-components",
25-
"dash-daq",
25+
"dash-daq<0.6.0",
26+
"dash<3.0.0",
2627
"pandas",
2728
"requests",
28-
"webviz-config>=0.0.40",
2929
"webviz-config-equinor",
30+
"webviz-config>=0.0.40",
3031
"webviz-subsurface-components",
3132
],
3233
setup_requires=["setuptools_scm"],

test_requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ pytest-mock
33
pylint
44
black
55
scipy
6-
dash[testing]>=2.5.1
6+
dash[testing]>=2.5.1,<3.0.0
77
selenium
8-
urllib3
8+
urllib3<2
99
flask>=2.2.5 # not directly required, pinned by Snyk to avoid a vulnerability
1010
werkzeug>=3.0.6 # not directly required, pinned by Snyk to avoid a vulnerability

types_requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ types-setuptools
44
types-PyYAML
55
types-python-dateutil
66
flask>=2.2.5 # not directly required, pinned by Snyk to avoid a vulnerability
7+
dash[testing]<3.0.0

0 commit comments

Comments
 (0)