-
-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Skip empty sequences when streaming with ndarrays #14007
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
Merged
Merged
Conversation
This file contains hidden or 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
bryevdv
reviewed
Aug 1, 2024
bryevdv
approved these changes
Aug 1, 2024
8f0c1c8 to
92b48c4
Compare
92b48c4 to
2cfe0fb
Compare
Contributor
Author
|
I improved the typing situation and added numpy to |
Contributor
Author
|
Finally I added $ git diff
diff --git a/examples/basic/scatters/color_scatter.py b/examples/basic/scatters/color_scatter.py
index 1f3770efa7..a7d62cbef9 100644
--- a/examples/basic/scatters/color_scatter.py
+++ b/examples/basic/scatters/color_scatter.py
@@ -10,6 +10,9 @@ many different plot tools.
import numpy as np
from bokeh.plotting import figure, show
+from bokeh.util.info import print_info
+
+print_info()
N = 4000
x = np.random.random(size=N) * 100$ BOKEH_DEV=true python examples/basic/scatters/color_scatter.py
Python version : 3.12.3 | packaged by conda-forge | (main, Apr 15 2024, 18:38:13) [GCC 12.3.0]
IPython version : 8.19.0
Tornado version : 6.3.3
NumPy version : 2.0.1
Bokeh version : 3.6.0.dev1+20.gb902fb51
BokehJS static path : /home/anaconda/repo/bokeh/bokehjs/build
node.js version : v20.12.2
npm version : 10.8.2
jupyter_bokeh version : 4.0.5
Operating system : Linux-5.15.0-113-generic-x86_64-with-glibc2.35 |
d89e68f to
135f58f
Compare
135f58f to
92bba7f
Compare
bryevdv
approved these changes
Aug 5, 2024
mattpap
added a commit
that referenced
this pull request
Aug 22, 2024
* Skip empty sequences when streaming with ndarrays * Add NumPy version to bokeh info * Add release notes * Add print_info() utility function equivalent of `bokeh info`
Chiemezuo
pushed a commit
to Chiemezuo/bokeh
that referenced
this pull request
Aug 27, 2024
* Skip empty sequences when streaming with ndarrays * Add NumPy version to bokeh info * Add release notes * Add print_info() utility function equivalent of `bokeh info`
|
This pull request has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
fixes #14004