George Kettleborough
George Kettleborough
In case anyone else finds this, I found a solution here: https://github.com/prettier/prettier/issues/15388#issuecomment-1717746872
Thanks for this. It's quite frustrating when packages get abandoned... Personally, I've switched to `BashOperator` which supports `env` and `append_env`. In my case, I'm installing dbt in my airflow image...
Any chance of tests and documentation for this?
Hi @johncronan thanks for having a look at this again. I find the easiest way to have multiple versions of Python available on most systems is to use pyenv: https://github.com/pyenv/pyenv...
It doesn't work for me either. I have set it up using `pyproject.toml` exactly like the docs say: ``` [build-system] requires = ["setuptools>=42", "wheel", "setuptools_scm[toml]>=3.4"] [tool.setuptools_scm] ``` Invoking `python setup.py...
@RonnyPfannschmidt Thanks for the clarification. It makes sense. But I think there is a gap in the documentation currently because it suggests the the `pyproject.toml` method is a direct replacement...
For anyone finding this, one way to ensure the build deps are present is to use tox to do your builds. Add to your `tox.ini`: ``` [testenv:build-dist] skipsdist = True...
The above worked for me but I did have to quote the data in the `schemaConfig` as per https://github.com/grafana/loki/issues/14126