Skip to content

Commit

Permalink
[MAINT] Pin kaleido version to 0.1.0.post1 for windows (#4101)
Browse files Browse the repository at this point in the history
* Pin kaleido version for windows

* Add note

* Temp test multiple windows systems

* Temp run test 100 times

* Revert changes for testing
  • Loading branch information
ymzayek committed Nov 10, 2023
1 parent a3057a9 commit 9ed165b
Showing 1 changed file with 7 additions and 1 deletion.
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

0 comments on commit 9ed165b

Please sign in to comment.