2-5
2-5
I have the same problem:  
FWIW using `:nth-child(2)` instead of `:first-child` fixes the problem for me, not sure if it has other side-effects: ```sass .btn-group { > .btn:not(:nth-child(2)), > .btn-group:not(:nth-child(2)) { margin-left: -$btn-border-width; } }...
This also fails when trying to use the underlying `datetime64` value. ``` python t = np.datetime64("2015-04-25 23:59:11+0000") t.view(np.int64) # 1430006351 bt["time > 1430006351"] ``` ``` --------------------------------------------------------------------------- TypeError Traceback (most recent...
I have this issue with a table containing a single `ENUM` column: ```sql CREATE TYPE index_type_t AS ENUM ('mark, 'index'); ``` Would it be possible to cache the introspection information...
It seems the cause is that `holoviews` wraps `DataFrame` columns in `Dimension`, and the code which throws the warning strictly checks against `str`, and doesn't handle `Dimension` columns.
I have this env variable set: `PYTHONWARNINGS=default`. Due to it I often see deprecation warnings in various projects. Maybe it would be a good idea if at least some `holoviz`...
I'm encountering this issue when using `ray-1.13.0` through `autogluon-0.5.2` on Windows / Python 3.9.3, everything installed with `pip` (no `conda` usage): ``` WARNING worker.py:1404 -- The log monitor on node...
How about using `psutil`, which is already vendored by `ray`, to determine if a `pid` is alive? I looked it up now and I see a number of possibilities. 1....
An option would be keeping `os.kill` on Linux/Mac and using `psutil` just on Windows. This way there is no risk of breaking Linux/Mac.
uWebSockets is the fastest ws client library out there. Adding ws client support to 0.18 would allow people using 0.14 to upgrade to the new version. One possible API, based...