Dennis
Dennis
Not sure if this is related, or perhaps a separate issue: Environment variable expansion does not seem to work for editable installs from `Pipfile`. For example, `pip` supports [environment variable...
> @dennisvang Just wondering--Does it work if you define it with the variable not in the quotes? Like this: `my_editable_package = {path = ${HOME}"/my_editable_package", editable = true}` @matteius Thanks for...
@rokm Thanks, that clears things up. The `SETUPTOOLS_USE_DISTUTILS` workaround does the job, for now. Cmd: ``` set SETUPTOOLS_USE_DISTUTILS=stdlib ``` Powershell: ``` $Env:SETUPTOOLS_USE_DISTUTILS = 'stdlib' ``` Actually any value other than...
For those interested, here's the nitty gritty: https://drafts.csswg.org/css-values-3/#calc-notation
Hello @liZe, CSS grid support would be very nice to have, so I decided to try my hand at this, based on your [comment above](https://github.com/Kozea/WeasyPrint/issues/543#issuecomment-474904286). I only just started playing...
@jku If you are looking for another use case: it looks like our [notsotuf client][1] would also benefit from such a feature. [1]: https://github.com/dennisvang/notsotuf/blob/77fce835be5a320131c74b1fc866b7d1e5deed98/src/notsotuf/client.py#L66-L74
@jku issue #822 looks related.
The `List[TargetFile]` option would be sufficient for our specific use-case. Currently, we base our search on the `target_path` values obtained from [tuf.ngclient.updater.Updater._trusted_set.targets.signed.targets.keys()][1], although I'm not sure that would always work....
> ... I believe any change to published *signed* metadata should lead to version bump: ... @jku Yes, that certainly makes sense. Thanks for clarifying! :-)
> In the case of targets and snapshot metadata it also makes sense to bump if only the signatures are changed, because their file hashes could be listed in other...