-
Notifications
You must be signed in to change notification settings - Fork 2
Cap ipywidgets<8 and simplify installation directly from GitHub #10
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -18,17 +18,23 @@ Thanks! | |
|
|
||
| ## Install | ||
| --------- | ||
| - ` git clone https://github.com/johnomernik/qgrid` | ||
| In one command: | ||
|
|
||
| `pip install git+https://github.com/JohnOmernik/qgrid https://github.com/JohnOmernik/qgrid/raw/main/qgrid2-1.1.3-py3-none-any.whl` | ||
|
|
||
| ..or install from sources (in develop mode with `-e`): | ||
|
|
||
| - `git clone https://github.com/johnomernik/qgrid --depth=1` | ||
| - `cd qgrid` | ||
| - `python setup.py install` | ||
| - `pip install -e .` | ||
| - `pip install qgrid2-1.1.3-py3-none-any.whl` | ||
| - `cd ..` | ||
|
|
||
| At this point, it worked for me with: | ||
|
|
||
| - Python 3.9 | ||
| - JupyterLab 3.2.1 | ||
| - ipywidgets 7.6.5 | ||
| - ipywidgets 7.6.5 <8 | ||
|
Comment on lines
36
to
+37
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It worked for me on
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You mean augment this PR with the latest versions of the other jupyter stuff that are compatible? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I guess yes, it could be useful for new users to know the current latest compatible versions of other libraries so they don't spend the trouble to downgrade when not necessary.
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We don't really know which is the very latest version of each dependency before it breaks - we have to wait for the new releases to arrive. What i can do, and it is actually suggested by the official docs, is to separate the |
||
|
|
||
| Note: I did not require Node JS to get this working, just the commands above made it work as I prebuilt the extension. | ||
|
|
||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| [build-system] | ||
| # Minimum requirements for the build system to execute. | ||
| requires = ["setuptools", "wheel"] # PEP 508 specifications. |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,3 @@ | ||
| notebook>=4.0.0 | ||
| pandas>=0.18.0 | ||
| ipywidgets>=7.0.0 | ||
| ipywidgets>=7,<8 |
Uh oh!
There was an error while loading. Please reload this page.