Jay Qi
Jay Qi
`assert` errors when making an assertion on multiple columns for a single-row data frame. My guess is that that the issue involves the internals somewhere incorrectly treating the row as...
I've seen a lot of private CCDS projects that have accidental MIT licenses because that is the default. I think even for public projects, the more sensible default is that...
### First Check - [X] I added a very descriptive title to this issue. - [X] I used the GitHub search to find a similar issue and didn't find it....
In the [migration notes for 0.19](https://mkdocstrings.github.io/handlers/overview/#selection-options), I see the note: > `inherited_members` is not yet implemented. As far as I can tell, neither the new experimental `python` handler, nor the...
Currently, the created Intersphinx inventory file always sets the "Version" attribute to 0.0.0. This is because the handler does not pass through the project version to the `Inventory` object on...
Currently, API reference docs do not show inherited methods. This may have been a known issue with mkdocstrings updates in the last few months but I'm not recalling the details...
As reported in #220, the edit links that mkdocs autogenerates do not work. This is because the default setting is off by a directory level. Configuration info here: https://www.mkdocs.org/user-guide/configuration/#edit_uri I...
The constructor signature of `pathlib`'s path classes is actually: ``` class pathlib.PurePath(*pathsegments) ``` with behavior that follows `os.path.join`'s behavior. https://docs.python.org/3/library/pathlib.html#pathlib.PurePath Is this something we should support? It adds some complexity,...