-
Notifications
You must be signed in to change notification settings - Fork 15
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
Renamed to pyviz_comms and added Python package #5
Merged
Merged
Changes from 11 commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
b2f4c4e
Added __pycache__ to .gitignore
jlstevens 2ddcb79
Added pyviz_comms/__init__.py
jlstevens 338b5ef
Added setup.py for python package
jlstevens ab5f0f5
Added conda.recipe directory
jlstevens b3d899b
Updated the README.md
jlstevens aa79580
Renamed HoloViews global object to PyViz in the code
jlstevens 27c27f0
Made PYVIZ_PROXY JavaScript block available for import
jlstevens 3f3e5a2
Updated docstring
jlstevens 7276bcd
Added temporary alias till next jupyterlab extension release
jlstevens b4cc4c9
Improved definition of PyViz proxy
jlstevens 6825f95
Fixed issue with PyViz object being undefined
jlstevens 7e1ef97
Updated meta.yaml homepage URL and build number
jlstevens 5f7100c
Re-indented JS_CALLBACK block
jlstevens e9f2157
Made Javascript indentation consistent
jlstevens 508a343
Set the pyviz_comms package version to 0.1.0
jlstevens File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,4 @@ | |
lib/ | ||
node_modules/ | ||
*.egg-info/ | ||
__pycache__ |
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,30 @@ | ||
{% set sdata = load_setup_py_data() %} | ||
|
||
package: | ||
name: pyviz_comms | ||
version: {{ sdata['version'] }} | ||
|
||
source: | ||
path: .. | ||
|
||
build: | ||
noarch: python | ||
number: 0 | ||
script: python setup.py --quiet install --single-version-externally-managed --record record.txt | ||
|
||
|
||
requirements: | ||
build: | ||
- python | ||
- setuptools | ||
run: | ||
- python | ||
|
||
test: | ||
imports: | ||
- pyviz_comms | ||
|
||
about: | ||
home: www.holoviews.org | ||
summary: Bidirectional communication for PyViz | ||
license: BSD 3-Clause |
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Point to pyviz.org?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Addressed in 7e1ef97