Claudio Jolowicz

Results 115 comments of Claudio Jolowicz

Thanks for chiming in @treyhunner ! I like the idea of configuring indentation only for the file extensions we actually use. With MyST in place, that should boil down to...

How would this affect the release workflow?

@jooh thank you for the feedback! I was hoping that the only thing that needs updating would be the docs, specifically the section about local development with multiple versions of...

> > Updating generated projects with changes from the template > > Just curious, have you evaluated libraries like [cruft/cruft](https://github.com/cruft/cruft) and [copier-org/copier](https://github.com/copier-org/copier)? Do they fall short in delivering this feature?...

Hi @jooh #1087 updates the User Guide to cover native Windows development. Let me know if there's anything missing or inaccurate. **Edit:** Read the Docs build for the PR is...

@asmodehn You could also try to run Nox when source files have changed. There are many general-purpose (but somewhat platform dependent) programs out there that help you do this. One...

This looks like the use case for session.run_always, or am I missing something? That function won't run under --no-install. https://nox.thea.codes/en/latest/config.html#nox.sessions.Session.run_always

I agree that removing hidden dependencies on setuptools and wheel is the path forward for the ecosystem. But I'm not sure that Nox should be the one to force this....

FWIW virtualenv installs setuptools and wheel by default, `python -m venv` installs setuptools, not wheel. ```python import nox @nox.session(python="3.10") def virtualenv(session): session.run("python", "-c", "import setuptools, wheel") @nox.session(python="3.10", venv_backend="venv") def venv(session):...

I'm still worried about the fallout of this move. Take pbr which has almost 50 dependents among the top 5000 PyPI packages, such as mock and bandit. This decision does...