Someone
Someone
TLDR: - `pybind_utils.h` assume different template signatures than upstream - cmake links to `pybind11` instead of `pybind11::module`, confusing cmake sometimes to try and `-lpybind11` (which it needn't and which fails)...
The distributed `FindGlog.cmake` and `FindGtest.cmake` diverge from the upstream's interface: the modern gtest and glog seem to link through the targets `glog::glog` and `GTest::gtest`, whereas you rely on the `GLOG_LIBRARY`...
https://github.com/elm-tooling/elm-language-server/blob/964a7d0b50c123cf0aebe2f87c9bf6bb79fb298a/src/providers/diagnostics/elmMakeDiagnostics.ts#L304 I didn't quite follow the code, but here's what I observe at runtime: - Running `neovim` with `nvim-lspconfig` and `elm-language-server=2.3.0` - Just `elm` in `PATH` - Apply any edits...
Hello! I've noticed that chainer checks pkg-resources at runtime and also enforces that `cupy
I'd like to be able to prevent some derivations from being pushed to cachix. Any filter based either on the name, or on an attribute or the full attribute set...
https://github.com/jupyterhub/systemdspawner/blob/e75caddd7f310c591f642cdd559107c171a1e657/systemdspawner/systemd.py#L158 `systemctl is-active` outputs a warning and exits with `0` when run in a chroot environment ([by "design", to quote the designer](https://bugzilla.redhat.com/show_bug.cgi?id=1110675#c2)), after which `jupyterhub` attempts to stop a non-existent...
### Is there an existing issue for this? - [X] I have searched the existing issues ### Issue description The syncthingtray systemd user service may start before syncthing has, in...
### Main idea NVIDIA considers FindCUDA.cmake (`find_package(CUDA)`) deprecated: https://docs.nvidia.com/cuda/cuda-installation-guide-linux/#importing-tarballs-into-cmake. The common approach to consume cudatoolkit today is to use FindCUDAToolkit.cmake (`find_package(CUDAToolkit COMPONENTS cudart cublas ...)`). Aside from FindCUDA being obsolete,...
### Describe the issue The setup.py file [specifies](https://github.com/DLR-RM/BlenderProc/blob/3b4c4e4da069798cce36f419da79369fc72a73cb/setup.py#L21) `blenderproc.command_line:cli` as an "entry point", which [implies](https://packaging.python.org/en/latest/specifications/entry-points/#use-for-scripts) that it should be possible to import the `blenderproc.command_line` module and call its `cli` function...
### Describe your feature request I would like to be able to deploy blenderproc in a static environment, with all the dependencies (python, PYTHONPATH, blender) pre-deployed and read-only. More specifically,...