Tom McLean

Results 14 issues of Tom McLean

Some of my documents are like: ``` class Foo(Document): _date_created = DateTimeField(required=True) name = StringField(required=True) ``` If I try to add a filter for this: ``` class FooFilter(Filter): _date_created: Optional[datetime.datetime]...

https://github.com/tum-pbs/PhiML/blob/0c9dc3c32755ea1b36dfd804c0b1c2872805565d/phiml/backend/_numpy_backend.py#L73 I am getting an error on this line: ``` module 'numpy' has no attribute 'math'. Did you mean: 'emath'? ``` This should possibly be replaced with ``` scipy.special.loggamma ```

![image](https://github.com/ConSol/docker-headless-vnc-container/assets/64887735/210ab11e-aaac-45fc-a86a-03289b744407) I am trying to run the container in an EC2 instance based on this packer.json file: ``` { "variables": { "region": "eu-west-2", "instance_type": "t3.medium", "ami_name": "docker-vnc-test-{{timestamp}}" }, "builders": [...

I am trying to make a version of [this](https://github.com/ta-lib/ta-lib-python) project, but using scikit-build-core to make it easier to install. The project links against the C library [TA-Lib](https://github.com/TA-Lib/ta-lib). I was wondering...