nbdev icon indicating copy to clipboard operation
nbdev copied to clipboard

Create delightful software with Jupyter Notebooks

Results 179 nbdev issues
Sort by recently updated
recently updated
newest added

Nobody wants their mailbox swamped with spam, so it should be possible to omit the author-email from the settings.ini.

## Crux of the issue In [`nbdev.release._get_conda_meta`](https://github.com/fastai/nbdev/blob/master/nbdev/release.py#L196-L234) lines [`220-233`](https://github.com/fastai/nbdev/blob/master/nbdev/release.py#L220-L233) we have the following: ```python d2 = { 'build': {'number': '0', 'noarch': 'python', 'script': '{{ PYTHON }} -m pip install ....

bug

No documentation is rendered for the return type, if the function has no arguments. Compare the two functions defined below: ```python #|export def foo1( ) -> int: # Return type...

bug

Hi, I am having some recent trouble creating the docs for my library (https://github.com/andichallenge/andi_datasets). Everything used to work fine but recently, whenever I try to run `nbdev_docs`, I get this...

bug

Fixed problem for Windows, which I described below, by simply hiding import inside necessary function. https://github.com/fastai/nbdev/issues/1382

In new version 2.3.13 there is a bug of os lib import (for example, when command nbdev_new is used), I guess this was not tested in Windows environment: nbdev_new site-packages\nbdev\quarto.py",...

bug

Hi, I am using the `nbdev_readme` command to generate the README file from `index.ipynb`. My repo looks as following (simplified): . ├── nbs/ │ └── index.ipynb ├── _proc/ │ └──...

bug

How to reproduce: 1. make a new `nbdev` project. 2. add a cell > ```python > #| export > import numpy > ``` 3. add `requirements = numpy>=1.22` in the...

bug

# Provide a minimally reproducible example ``` #| export from enum import Enum #| export class Role(Enum): SYSTEM = "system" USER = "user" ASSISTANT = "assistant" FUNCTION = "function" ```...

bug

Hi, When executing commands such as `nbdev_pypi` from a shell (which get routed to `nbdev.release:release_pypi`), the commands always return exit code 0 regardless of the errors happening inside the command....

bug