Claudio Jolowicz

Results 115 comments of Claudio Jolowicz

> The first time I tried this (on Windows with latest Poetry/Nox) using the [`install()` function in your comment](https://github.com/cjolowicz/nox-poetry/issues/663#issuecomment-1423240512), the invoked Poetry started messing with the outer Poetry environment: This...

@johnthagen Does this reproduce when you don't have Nox as a development dependency? I recommend installing both Nox and Poetry using pipx, side by side. You're running Nox from a...

Am I missing something or does this still need a [PEP 561](https://peps.python.org/pep-0561/) `py.typed` marker file so clients can consume the types?

Thank you for working on this! It's interesting to see how this feature works out for our CI. In this particular case, I'm not sure how the benefit of single...

Would it make sense to pre-compute the build matrix in pre-commit?

I'm not sure I understand why you don't just use `nox -r`? If you want to avoid even the install commands, use `nox -R` instead. Is your suggestion that nox-poetry...

> You can set nox.options.reuse_existing_virtualenvs = True so that the commands run instantly and skip the install step, but this has the risk that if your lock dependencies change, you...

Does this dump credentials in clear into the generated constraints file under .nox?

Sorry but dumping secrets in the generated requirements file is not a behavior I want to support, even as an option. Please export the secrets as an environment variable for...

I don't think nox-poetry should handle credentials at all. You can export the secrets as environment variables in CI.