Tyler Erickson
Tyler Erickson
Wahoo! I now see the widget output in the preview! and they now [show up on GitHub Pages](https://tylere.github.io/test-evaluate-code-3/test_ipywidget_evaluate.html): For completeness, here is the current versions of the libraries: ``` (test-evaluate-code-3)...
Looks like I was celebrating too soon... While the widget rendering works on the simple index page/notebook, rendering does not work in notebooks that define a module. Example repo: https://github.com/tylere/test-evaluate-code-4...
> BTW, why is the `execute: true` needed in the first place? Is it to ensure that the widget state gets added to the notebook? I *think* it is needed......
With JupyterLab's "Save Widget State Automatically" enabled, the UI does save the widget state, but then nbdev's default "Jupyter hook" behavior strips the widget state. If I set `jupyter_hooks =...
This is currently labeled as "waiting for response" but I think that can be removed now.
Yes, the master versions have a better error message, indicating that GH doesn't like the release tag. I bumped the version number, but that didn't change the error. Am I...
Thanks for clarifying that. However, I am getting the same error while using `nbdev_release_gh` so I am guessing I am still missing a prerequisite step. # To Reproduce Test repo:...
Looks like most of the variables are empty: ``` (test-release-3) tylere-macbookpro5:test-release-3 tylere$ nbdev_release_gh > /Users/tylere/Documents/GitHub/fastai/ghapi/ghapi/core.py(62)__call__() -> return self.client(self.path, self.verb, headers=headers, route=route_p, query=query_p, data=data_p) (Pdb) w /Users/tylere/miniconda3/envs/test-release-3/bin/nbdev_release_gh(33)() -> sys.exit(load_entry_point('nbdev', 'console_scripts', 'nbdev_release_gh')())...
Whoops, I didn't realize the code was called repeatedly. Removing the breakpoint and adding the print statement yields: ``` (test-release-3) tylere-macbookpro5:test-release-3 tylere$ nbdev_release_gh DEBUG /repos/tylere/test-release-3/releases/latest get {} {} {} {}...
Here is the entire printout, using `GHAPI_DEBUG=1` ``` (test-release-3) tylere-macbookpro5:test-release-3 tylere$ GHAPI_DEBUG=1 nbdev_release_gh {'data': None, 'full_url': 'https://api.github.com/repos/tylere/test-release-3/releases/latest', 'headers': {'Accept': 'application/vnd.github.v3+json'}, 'method': 'GET'} {'data': None, 'full_url': 'https://api.github.com/repos/tylere/test-release-3/issues?state=closed&labels=breaking&sort=created&since=2022-09-16T01%3A53%3A57Z', 'headers': {'Accept': 'application/vnd.github.v3+json'}, 'method':...