George Sakkis
George Sakkis
I stumbled on this just today and I was about to open a similar issue. :+1: for adding an option (e.g. `--source-imports`) to produce edges only between the modules/packages that...
@thebjorn an optional flag for the proposed behavior (either on or off by default) would be great!
I kinda like the general idea and had also thought of something similar. Two comments for the specific API: - `steps` is unnecessary, this can (and should in my opinion)...
An alternative api is to accept a (finite or infinite) iterable of parts: ```py def iter_versions(version, parts, prerelease_token="rc"): for part in parts: version = next_version(version, part, prerelease_token) yield version def...
> Hmn, I'm wondering about the `parts` argument. Shouldn't it be `*parts`? Not if we want to support arbitrary iterables without expanding them into tuples first.
@tomschr Sure no problem
Bump; there's a 3+ year old [fork](https://github.com/tobiasschulz/fdupes) that implements this, why is it not merged?
@jbruchon thanks for the warning; I just found a link to the fork in another issue and didn't pay close attention to it, let alone review the code. I wasn't...
Can you check if it works in the latest head? If not, what's the respective urllib3 call that works?