Andy Kluger
Andy Kluger
KDE / Plasma color schemes are INI-style files that list UI component colors as RGB values. For example a `.colors` file includes a section like this: ```ini [Colors:Window] BackgroundAlternate=57,64,70 BackgroundNormal=50,56,62...
Hi, Thanks for this, I use it to generate GTK themes to match my KDE/Plasma color schemes. How closely is this tied to the Numix theme specifically? Would it be...
This changes `pip-compile`'s default behavior for writing newlines (1), and adds an overriding flag (2). ### (1) By default, `pip-compile` will determine a newline string to use based on a...
`pip-compile` gains an option with four valid choices: `--newline=[LF|CRLF|native|preserve]`, which can be used to override the guessed newline character used in the output file. The default is `preserve`, which tries...
This replaces #1329, rebased with care on top of pip-tools 6.8.0. **Changelog-friendly one-liners**: - Support relative paths in input files, as long as they lead with `file:`, `+file:`, or `.`....
Fixes #1550 This aims to address two problems: - When `--upgrade` and `--upgrade-packages PKGSPEC` are used together, and `PKGSPEC`'s package is not in the input file (but is a subdependency),...
Before running `pip-compile`, the output file may contain a pinned requirement which can't be found in PyPI or whichever repo (e.g. a revoked release). This change aims to disregard these...
Have `diff` include already-installed matching requirements in its `to_install` set. This means that during sync, dependencies of desired packages will be (re)installed after potentially being uninstalled, regardless of environment state...
This was encountered in #1529 When a needed package is already pinned in the output file, but has an invalid or at least unavailable version there, the compilation will fail....
Since `rich` uses itself to display the output of `--help`, it would be useful to process the switches affecting the output format when crafting the `--help` output. ```console $ unset...