Skip to content

Commit b0fa8a1

Browse files
committed
Relax library version constraints in dependencies
- Change seaborn from fixed version 0.13.2 to minimum version >=0.11.2 - Change matplotlib from fixed version 3.10.0 to minimum version >=3.7.3 - Change statannotations from fixed version 0.7.1 to minimum version >=0.6.0
1 parent 2d3eb6e commit b0fa8a1

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ classifiers = [
1919
dependencies = [
2020
"numpy",
2121
"pandas",
22-
"seaborn==0.13.2",
23-
"matplotlib==3.10.0",
24-
"statannotations==0.7.1",
22+
"seaborn>=0.11.2",
23+
"matplotlib>=3.7.3",
24+
"statannotations>=0.6.0",
2525
"scipy"
2626
]
2727

0 commit comments

Comments
 (0)