Skip to content
#

jupyter

Here are 3,548 public repositories matching this topic...

dash
bokeh
tcmetzger
tcmetzger commented Oct 26, 2021

As a follow-up to #11540, we would like to add metadata to as many examples as possible. This will not only make the examples more usable as they are right now, but it will also open up new possibilities to search for and crosslink examples.

For the purpose of this issue, 'standalone examples' are all .py files in these folders in this repository:

  • examples/plotting/file
  • `examples/mode
tirkarthi
tirkarthi commented Jan 12, 2022

Python 3.10 added suggestions for AttributeError and NameError in the error messages. It seems the suggestions are not stored in the exception object but calculated when Error is displayed. There is a note that that this won't work with IPython but it will be good to see if it's feasible. Opening an issue for discussion.

https://bugs.python.org/issue38530
https://docs.python.org/3/whatsnew/3.

mathbunnyru
mathbunnyru commented May 22, 2021

Contributed recipes are not checked in CI, were mostly added a long time ago and so they might be out-of-date.
It would be nice if someone checked them, updated packages versions used there and verified that they still work.

type:Maintenance tag:Documentation good first issue
wowchemy-hugo-themes
n-riesco
n-riesco commented Jun 8, 2020

Hi,

In regard to @n-riesco 's comment "please could you also confirm that the file %APPDATA%\jupyter\kernels\javascript\kernel.json":
I don't seem to have the folder kernels. (I guess that explains why Atom says it can't find the kernels?)
image

regarding the instructions on [https://

good first issue
nbdev
jvivian
jvivian commented Mar 1, 2022

Version: 1.2.2

Summary of issue
Including a @dataclass decorated class breaks getsource in show_doc

Minimal example

  • Clone nbdev_tutorial
  • Add new cell in 00_core.ipynb
#export
from dataclasses import dataclass

@dataclass
class Foo:
    a: int
    b: str
    c: float
  • Run nbdev_build_lib
  • Run nbdev_build_docs
nbdev_build_docs
bug good first issue

Improve this page

Add a description, image, and links to the jupyter topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the jupyter topic, visit your repo's landing page and select "manage topics."

Learn more