Carl Dehlin
Carl Dehlin
Getting same issue in Firefox browser. Switched to Chrome and then it works.
I run the following ```python import ipyvolume as ipv hdz = ipv.datasets.hdz2000.fetch() ipv.volshow(hdz.data) ``` Getting this error in the notebook ``` [Open Browser Console for more detailed log - Double...
@yutkin Do you have time to take a look at this issue? It's a trivial fix, and it affects downstream package consumers, so a merge is heavily appreciated. Thanks!
Hi, the build system bootstrap with Cython and setuptools can now be solved with using pyproject.toml files. See #62 for a fix.
See this ci request: https://ci.cppget.org/@e83bbab2-5067-4db6-b13b-5648da88d3f9 . It's probably due to bugs in the MSVC compiler, I can't reproduce it on my machine with a more recent compiler. I am using...
This is a bit of a straw man example. If you read up a bit earlier in the docs it says `If a CHECK() fails - the test is marked...
While I see your point, this doesn't matter. You have a bug in the first subcase, doctest catches it, you fix it, life goes on. This is not going to...
There are several ways to support printing of custom types in assertion failures, read the docs: https://github.com/doctest/doctest/blob/master/doc/markdown/stringification.md .
Tthis only makes sense if you want to support your own format flags. A doctest assertion does not specify a format string but you just get the "default string representation",...
The point of `std::formatter` is to support parsing custom format flags. I see now that you have grabbed the example from here: https://en.cppreference.com/w/cpp/utility/format/formatter. In this example, `QuotableString` supports special formatting...