Results 163 comments of Paul Garner

``` ╰─ pdm add bonobo==0.6.4 Adding packages to default dependencies: bonobo==0.6.4 🔒 Lock failed Unable to find a resolution for packaging because of the following conflicts: packaging (from [email protected]) packaging>=22.0...

+1 I would like to be able to auto-reload containers which use a volume mount, by defining `watch` rule in the compose file, preferably without running in a special mode...

Maybe related, but I just noticed that different langchain modules are using different ways to set up a logger: ```python logger = logging.getLogger() logger = logging.getLogger(__name__) logger = logging.getLogger(__file__) ```...

similar issues: - most of these: https://github.com/python-poetry/poetry/issues?q=is%3Aissue+boto3+is%3Aclosed - https://github.com/python-poetry/poetry/issues/5896 ... [this comment](https://github.com/python-poetry/poetry/issues/5896#issuecomment-1589893476) on there appears to say that the version solving _will_ eventually succeed if you can wait long enough...

thanks to @symroe for the handy workaround! as a tidier alternative to instantiating a class and fiddling with `sys.modules`... in Python 3.7+ we can use a module-level `__getattr__` so create...

I have this problem with Python 3.10.3 on macOS 13.2 (M1) ``` ... /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/c++/v1/__memory/unique_ptr.h:610:45: error: unknown type name 'nullptr_t' operator!=(const unique_ptr& __x, nullptr_t) _NOEXCEPT ^ fatal error: too many errors...

for me I get a [different error](https://github.com/nmslib/hnswlib/issues/442#issuecomment-1498177972) then: ``` $ export HNSWLIB_NO_NATIVE=1 $ pip install hnswlib Collecting hnswlib Using cached hnswlib-0.7.0.tar.gz (33 kB) Installing build dependencies ... done Getting requirements...

I solved the issue by giving up on Chromadb and just using FAISS... pip install worked first time, zero problems 😜 seriously though... I just tried this: > `xcode-select -s...

somehow the problem is in the `@curry` redefining `add` as `add = lambda x: lambda y: y + x` (like the `subtract` example on the README) seems to work fine

returning `Reader` seems to be inherent in the implementation of `@curry` https://github.com/correl/typesafe-monads/blob/master/monads/currying.py#L16 PyMonad does the same, I guess that is correct so `add` is a `Reader` and the `xx`,`yy` are...