Hugo
                                            Hugo
                                        
                                    Terminal emulator `foot` also supports this: https://codeberg.org/dnkl/foot/commit/bdb79e8b9fb36f627bb204ce2060dd5a877f3712
I think we should integrate this into `starship prompt` and `starship prompt --continuation` rather than into the bash/zsh/fish/etc scripts. [starship.bash.patch](https://github.com/user-attachments/files/16451727/starship_bash.patch.txt) is a good starting point tho and makes it obvious...
You can set `.envrc` to: ```bash #!/usr/bin/env bash # shellcheck disable=1091 source "${WORKON_HOME}/django-afip/bin/activate" ``` Where `django-afip` is the name of the project (and its matching virtualenv).
See https://github.com/jazzband/pip-tools/issues/2062 and https://peps.python.org/pep-0735/
The same file can be generated with the above command. If you provide `--upgrade`, it is possible that the generated file will be different. This is a reference of what...
`"my-pkg[tests]"` means "this package with the `tests` extras. `my-pkg` is then added to extras because you're explicitly requesting it.
I understand what you're actually trying to do, but I'm not sure that it's possible to express. Personally, I would just include `pytest` as a `dev` dependency.
> It would be possible to create a group of optional dependencies. For example, sql = ['pandas[postgresql]', 'pandas[mysql]', 'pandas[sql-other]']. This way you don't have to write more than once a...
I'd like to hear of any advantages of mkdocs-material vs sphinx (I don't consider "it's trendy right now" to be a technical advantage). Sphinx is pretty much the de-facto standard...
> It would be nice to supply pip-compile with some attribute to get an output with only packages stated in requirements.in and their current version, highest available version and highest...