Thierry Jean
Thierry Jean
not currently planned
Linking this relevant issue on have a `__getitem__` on the `Driver` or `Driver.graph`: https://github.com/DAGWorks-Inc/hamilton/issues/836 And this PR that added `__getitem__` on the `HamiltonGraph`: https://github.com/DAGWorks-Inc/hamilton/pull/919
@rudolfix This is caused by name shadowing. The type checker will complain despite imports working. ```python # dlt/__init__.py # `dlt.pipeline` refers to `dlt/pipeline/__init__.py`, which contains `pipeline` from dlt.pipeline import pipeline...
The issue you opened is valid. The challenge in this is backwards compatibility unfortunately. The existing code has some complexity and "doing things in a cleaner way" is likely to...
Would greatly appreciate feedback from maintainers. If you have any thoughts or made any decisions. The changes from `UTC` to `+00:00` ([here](https://github.com/sfu-db/connector-x/pull/743/files#diff-a4cb550048acd55ca4ee7d3696496f776cd8e9561b6f959d44dff6bbcc731087L199)) are breaking. It seems that the issue I...
>You say that the tests fail, but I don't know what you mean (they passed the GitHub CI, and passed on my laptop). I also explored these things once again...
As mentioned the initial issue: - Ubuntu 24.04 - Tried pyarrow 18 and 20 - Connectorx 0.4.3 Python is 3.11 I linked an issue on our repo where latest `connectorx`...
@EricFecteau Thanks a lot for sharing this repository. I think we stumbled upon a `pyarrow` bug! Investigation: - Ran your code successfully. It can print individual timestamps with timezone -...
# Current main code path (roughly): 1. functions are defined in a file, let's say `dataflow.py` 2. `dataflow.py` is imported into the module `dataflow` 3. `hamilton.graph_utils.find_functions()` retrieves "hamilton functions" from...
@arpitgupta-it Yes, you can work on it! Do you have any question? The goal is to catch more explicitly the missing table when calling `self.initializer.load(...)` and raise an appropriate error...