Jeremy Fleischman
Jeremy Fleischman
Is it possible to add custom packages (as documented by OpenWrt [here](https://openwrt.org/docs/guide-user/additional-software/imagebuilder#custom_packages))? I played around with this for a while, and wasn't able to figure out a way to accomplish...
### Issue Kind Brand new capability ### Description Poetry has support for pulling authentication information out of the system keyring. This (largely) works the same as [pip's keyring support](https://pip.pypa.io/en/stable/topics/authentication/#keyring-support), and...
### What's the problem this feature will solve? Today, pip using keyring as a subprocess [looks for `keyring` on the PATH](https://github.com/pypa/pip/blob/24.0/src/pip/_internal/network/auth.py#L183-L213). However, this breaks if you've got a carefully configured...
In the context of pip, and especially when `rich=True`, I bet it *is* true that `LogRecord.args` is always a tuple. However, in general, this is not true. Single argument dicts...
### Description If a custom keyring backend has a log line like this: ```python logger.debug("This is a debug message: %s", {"foo": 42}) ``` Then pip ends up blowing up on...
Bumps [black](https://github.com/psf/black) from 23.3 to 24.3.0. Release notes Sourced from black's releases. 24.3.0 Highlights This release is a milestone: it fixes Black's first CVE security vulnerability. If you run Black...
I can guess why this isn't supported: because https://github.com/Michael-F-Bryan/include_dir/pull/63/ only included cross platform metadata, and "is executable" is not cross platform. Is this something you'd be open to adding? I'm...
I can't tell if this has already been discussed elsewhere. In https://github.com/Michael-F-Bryan/include_dir/pull/63, it looks like we started capturing metadata, but AFAICT, we don't actually restore that metadata on extraction. I...
It would be nice to be able to ensure poetry gets installed with some plugins. I suppose it would require doing something quite clever with the `.tool-versions` format. A couple...
**To Reproduce** I can reproduce this issue with deepdiff >= 6.7.0. For example: ``` $ pip install deepdiff==6.7.0 $ python. -c 'import deepdiff; from deepdiff import DeepDiff; print(DeepDiff(t1={b"foo": 1}, t2={b"foobar":...