Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[MAINT] Pin kaleido version to 0.1.0.post1 for windows #4101

Merged
merged 5 commits into from
Nov 10, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 7 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,13 @@ min = [
"scipy==1.6.0"
]
# For surface plotting mostly
plotly = ["kaleido", "plotly"]
# Kaleido version is pinned for windows due to bug
# See https://github.com/plotly/Kaleido/issues/134 for more detail
plotly = [
"plotly",
"kaleido ; platform_system != 'Windows'",
"kaleido==0.1.0.post1 ; platform_system == 'Windows'"
]
# Necessary req to use nilearn's plotting module
plotmin = ["matplotlib==3.3.0"]
plotting = ["matplotlib>=3.3.0"]
Expand Down