Samuel Chai

Results 13 comments of Samuel Chai

Would you be opposed to me opening a pull request to add a --validate-bump flag to the version command?

Yes sir! Thanks for the quick response. ``` dependencies = [ "bokeh>=2.4.3", # For dask diagnostic dashboard "botocore", "dask-kubernetes==2023.1.1", "prefect>=2.10.6,=2.6.3", "redis>=4.3.1", "requests>=2.27.1", "saga3>=0.6.7", "sendgrid>=6.10.0", "setuptools>=65.5.1", "toolz>=0.12.0", "paho-mqtt==1.6.*", "prometheus-client>=0.16.0", "pyowm>=3.3.0", "heimdall>=0.3.9",...

``` [build-system] requires = ['hatchling'] build-backend = 'hatchling.build' [tool.hatch] root = 'src' [tool.hatch.version] path = 'src/ivaldi/__init__.py' [project] name = 'ivaldi' description = 'Data ingress manager for HVAC.' authors = [...

Is there documentation for this -- I haven't seen this yet?

Hey Ofek So actually I think that this doesn't exactly solve my use case. I want to set PYTHONPATH in each environment. Using a template is great, but that template...

Yes of course. I have a default environment, which I would like to include the lint and test features, and then I have lint and test environments, which have different...

``` [tool.hatch.envs.default] dev-mode = true python = "3.12" features = [ "dev" ] [tool.hatch.envs.default.env-vars] PYTHONPATH = "backend" [tool.hatch.envs.deploy] dev-mode = true python = "3.12" ``` In this case, I would...

Yeah I mean I'm specifically trying to avoid that, I think a more elegant solution would be something like [tool.hatch.envs.*.env-vars]

Hey Ofek, Was wondering what you think of this feature? I can add it.