Thomas Rinklin
Thomas Rinklin
Same problem here. First I thought, that Qt5 could not be found because the brew qt5 formula is keg-only and all the symlinks are missing. But a `brew link qt5...
Okay, I found a solution for this (see this [SO answer](http://stackoverflow.com/a/31769858/1151574)). You can create a build script which customizes the build procedure. In my case a `build.rs` file in the...
Seems that additionally libc++ needs to be linked. This additional line in `build.rs` fixes it: ```rust println!("cargo:rustc-link-lib=c++"); ```
Maybe this would be helpfull, yes. Is this not needed in Windows/Linux?
I digged into it a bit. `pytest.approx(MyVec3(1, 2, 3), abs=0.5)` results in an object of type `ApproxSequenceLike` which sound right to me. This is the check that is responsible for...
Replacing `_recursive_sequence_map` with ```python def _recursive_sequence_map(f, x): """Recursively map a function over a sequence of arbitrary depth""" if ( hasattr(x, "__getitem__") and isinstance(x, Sized) # Type ignored because the error...
Hi @RonnyPfannschmidt, I see your point and I'm of course totally fine with not changing code for a stretch use case! We would then just implement our own `MyVec` approx...
Is there any update on this PR or anything I could test or where I could contribute?
We also have this problem where we want to further restrict the access for subpages. We have a menu entry "Intern" which we don't want to show to the public...
@nimasmi Do you have a workaround other than - moving the sub page to a unrestricted place - modifying restriction of sub page - and moving back again?