Skip to content

Commit 3b9dfae

Browse files
pingsutwAtharva1723
authored andcommitted
Specify pandas version for Python 3.9 for deck plugin (flyteorg#3289)
Signed-off-by: Kevin Su <pingsutw@apache.org> Signed-off-by: Atharva <atharvakulkarni172003@gmail.com>
1 parent c999d70 commit 3b9dfae

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
markdown
2-
pandas
2+
pandas<=2.2.3; python_version < '3.10'
3+
pandas>=1.0.0; python_version > '3.9'
34
plotly
45
pygments
56
ydata-profiling

plugins/flytekit-deck-standard/setup.py

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,15 @@
1313
"markdown": ["markdown"],
1414
"plotly": ["plotly"],
1515
"pygments": ["pygments"],
16-
"all": ["pandas", "pillow", "ydata-profiling", "markdown", "plotly", "pygments"],
16+
"all": [
17+
"pandas<=2.2.3; python_version < '3.10'",
18+
"pandas; python_version > '3.9'",
19+
"pillow",
20+
"ydata-profiling",
21+
"markdown",
22+
"plotly",
23+
"pygments",
24+
],
1725
}
1826

1927
__version__ = "0.0.0+develop"

0 commit comments

Comments
 (0)