LaurentBergeron
LaurentBergeron
**Describe the bug** During the `black .` post hook, openapi-python-client throws : ``` openapi-python-client update --url someurl.com/openapi.json Updating my_project Error(s) encountered while generating, client was not created black failed Traceback...
After calling `graphviz_draw` with `filename=None`, a PIL image object is returned, let's call it `im`. When calling `im.show()`, an error is raised because the image file was already deleted within...
At multiple location in the `exdir` package, `yaml.safe_load` is used. This syntax will be deprecated by Ruamel. Using ruamel 0.17.21, the following Deprecation warning appears: ``` PendingDeprecationWarning: load will be...
### What is the expected enhancement? Implementing a transitive closure function with similar functionality to the one in Networkx: https://networkx.org/documentation/stable/reference/algorithms/generated/networkx.algorithms.dag.transitive_closure.html
### What is the expected enhancement? Should be similar to the networkx API: https://networkx.org/documentation/stable/reference/algorithms/generated/networkx.algorithms.traversal.breadth_first_search.bfs_layers.html It would be great to allow using the `visit.BFSVisitor` feature, like the current rustworkx `bfs_search` implementation
### Information - **rustworkx version**: 0.12.1 - **Python version**: 3.9.13 - **Rust version**: NA - **Operating system**: Windows 10 ### What is the current behavior? Adding a `\n` or `:`...
The `pint.testing.assert_allclose` function fails with the `Measurement` class ``` import pint from pint.testing import assert_allclose x = pint.Quantity(1, "m").plus_minus(0.1) y = pint.Quantity(1, "m").plus_minus(0.1) assert_allclose(x, y) ``` Would it be possible...