Sigurd Spieckermann
Sigurd Spieckermann
I think that ```shell copier copy ... # ✅ (because of valid interactive input) copier copy --defaults ... # ❌ (because of invalid default value) copier copy --defaults -d team=@copier-org/everyone...
Sorry for the delay. :face_with_peeking_eye: I don't mind a new line for the instructions. Just an alternative idea for the arrow keys: How about using Unicode arrow characters, i.e. "↓↑...
I assume you installed the `poetry-dynamic-versioning` plugin, right? If so, it seems that Poetry's dependency resolver does not consider the version computed by the plugin but instead simply uses the...
Nice! The RTD build is failing because `poetry-dynamic-versioning` is not installed there. This should be fixed by adding `poetry self add "poetry-dynamic-versioning[plugin]"` to `.readthedocs.yml` after Poetry is installed. I'm not...
The `JRMurr/direnv-nix-action@v3` action fails in the `Nix Environment setup` step with the following error: ``` Because copier-templates-extensions (0.3.0) depends on copier (>=6) and no versions of copier-templates-extensions match !=0.3.0, every...
Makes sense to me.
I think the problem could be solves if we created Pydantic models for `copier.yaml` content with a regex validator for top-level keys without a leading underscore. Then, Pydantic would raise...
I haven't tried it, but I believe it Copier silently ignores any `_`-prefixed variables that aren't known settings. But a well-designed Pydantic model would catch those unknown settings. Perhaps I...
That's true. In fact, the context hook wasn't called in the prompt phase until recently, which to my knowledge wasn't documented exactly either. I'd have expected a context hook to...
IIUC, you'd like to colocate a Copier template and a project generated from that template in the same Git repository. Is this correct? If so, Copier supports a local template...