-
-
Notifications
You must be signed in to change notification settings - Fork 404
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
122 changed files
with
641 additions
and
450 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
import sys | ||
|
||
import pandas as pd | ||
from packaging.version import Version | ||
|
||
PD2 = Version(pd.__version__) >= Version("2.0") | ||
|
||
collect_ignore_glob = [ | ||
# Needs selenium, phantomjs, firefox, and geckodriver to save a png picture | ||
"user_guide/Plotting_with_Bokeh.ipynb", | ||
# Possible timeout error | ||
"user_guide/17-Dashboards.ipynb", | ||
# Give file not found | ||
"user_guide/Plots_and_Renderers.ipynb", | ||
] | ||
|
||
# Numba incompatibility | ||
if sys.version_info >= (3, 11): | ||
collect_ignore_glob += [ | ||
"user_guide/15-Large_Data.ipynb", | ||
"user_guide/16-Streaming_Data.ipynb", | ||
"user_guide/Linked_Brushing.ipynb", | ||
"user_guide/Network_Graphs.ipynb", | ||
] | ||
|
||
# Pandas bug: https://github.com/pandas-dev/pandas/issues/52451 | ||
if PD2 and sys.platform == "win32": | ||
collect_ignore_glob += [ | ||
"gallery/demos/bokeh/point_draw_triangulate.ipynb", | ||
"reference/elements/*/TriMesh.ipynb", | ||
"user_guide/15-Large_Data.ipynb", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.