Files
langchain/libs
ccurme 63c8caabc6 core[patch]: update test to catch circular imports (#23172)
This raises ImportError due to a circular import:
```python
from langchain_core import chat_history
```

This does not:
```python
from langchain_core import runnables
from langchain_core import chat_history
```

Here we update `test_imports` to run each import in a separate
subprocess. Open to other ways of doing this!
2024-06-20 13:52:27 -07:00
..
2024-06-20 13:52:27 -07:00