Will Dean

Results 57 comments of Will Dean

I also saw this inconsistency in the gp module docs the other day. I agree `sigma` would be a good consistent solution. I'd be willing to take a stab at...

Sounds great. Will open up PR. I'm first time contributor, but will follow the [guidelines](https://github.com/pymc-devs/pymc/blob/main/CONTRIBUTING.md)

Doesn't something like this work? ```python from pypika import AliasQuery, Field, functions as fn, Query CUSTOMER = "customer" A = AliasedQuery("A") B = AliasedQuery("B") C = AliasedQuery("C") D = AliasedQuery("D")...

It is not part of the library. But I think it would be cool functionality I've built out some simple parsing using [`sqlparse`](https://sqlparse.readthedocs.io/en/latest/) but it is not very robust so...

Not totally sure. Maybe something like [this](https://stackoverflow.com/questions/64942993/how-to-de-stringify-pickled-object). Were you able to come up with any solutions?

> I don't really have an idea how to do it unless somehow connect tests to documentation and then generate the documentation based on the tests I mean, the documentation...

I think that the [current `pyproject.toml` ](https://github.com/kayak/pypika/blob/master/pyproject.toml) needs to adopt the new standard. It may look like this: https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html How have you installed python? Does it work with any other...

Interesting I am able to create an environment with those two packages ```Dockerfile FROM python:3.11.5 RUN pip install pypika vectordb-bench ``` How have you installed python and what type of...

@pauldintel Did the `setuptools` version impact the install result? @AzisK Do you think there can be anything done on PyPika side to make this easier for user?

> hi @wd60622 I have tried running this inside Python virtualenv and it works perfectly fine . I know as a dockerfile it might work inside the container too ....