Trim21
Trim21
is it possible to extend current date to date[time]? 🤔 for example, `2020-03-01T00:01:02 * "transfer"`
> This has been discussed before; it would drag timezones into it. I chose to keep things at the civil date level on purpose. It's been discussed to add a...
Pull request welcome or we can make these filter status memorized in local storage
你可以PR
if we are talking about symlink, it also break git as source, it can't get sha from ref if that ref contains symlink...
as for tarball/zip, I think it would be more safe to add a option to allow "copy the file", in case there are some build script that change source and...
I end up using `git clone` with `--config` in build script, another option for this may be allowing user to pass config in git source
current MatchSpec maybe not very suitable for the use case of renovatebot... for example: ``` from rattler import MatchSpec print(MatchSpec("pytest ==3.1.2.*").version) # 3.1.2.* print(MatchSpec("pytest >=3.1.2.*").version) # >=3.1.2 print(MatchSpec("foo=1.0=py27_0").version) # ==1.0...
> Mm no there is currently no way to get the original (ambiguous) spec. > > Can you help me understand why that is important? Do you want to modify...
> I understand but the given spec is also ambiguous. > > `==3.4.*` says > > 1. exactly equal to `3.4.*` > 2. any version starting with `3.4` > >...