Jay Qi

Results 162 comments of Jay Qi

Hi @shanirosen-airis, @fafnirZ, Unfortunately, this is a tricky gotcha that we haven't totally figured out the right UX for. It is indeed the case that when you create a folder...

See also #51 for discussion about this and why this is not straightforward.

It looks like manually unsetting the `CONDA_PREFIX` environment variable is a workaround, e.g., ```python @nox.session(venv_backend="uv") def lint(session): session.env.pop("CONDA_PREFIX") session.install("ruff") ```

I just saw https://github.com/astral-sh/uv/pull/2574 was released with [uv v0.1.23](https://github.com/astral-sh/uv/releases/tag/0.1.23). This fixes the specific problem I was having. However, I think the opposite case would still be an issue (active venv,...

I have a similar request to what the original poster asked. My use case in particular is for a project that is a Python library. I want to be able...

> You can use `--isolated` to avoid changing your default project environment. Awesome! This at least addresses my problem of clobbering the default project environment. Am I understanding correctly that...

I'm in favor of having the default to be Ruff. It's clear that Ruff is the emerging standard, and they describe themselves as production-ready. There are major projects that are...

I found this issue's title to be misleading. Superclass in Python usually references to inheritance, but the code example shown does not seem to be about inheritance, and instead seems...

Okay, agreed that this doesn't seem clearly necessary. Luckily, I think if we find from usage that this is valuable in the future, it should be a fairly straightforward change...

This is actually already done in #460 and released as [v2.3.0](https://github.com/drivendataorg/cookiecutter-data-science/releases/tag/v2.3.0).