Closed blakat360 closed 1 year ago
The following toml:
[z] src.github_tag = "jethrokuan/z" fetch.github = "jethrokuan/z"
pulls in tag 1.1 and not <2.7.0
I have tried passing src.include_regex = ".*" but that doesn't change anything
src.include_regex = ".*"
nvchecker uses pkg_resources.parse_version to compare versions. In this case, <2.7.0 is considered to be older than 1.1.
nvchecker
pkg_resources.parse_version
<2.7.0
1.1
The following toml:
pulls in tag 1.1 and not <2.7.0
I have tried passing
src.include_regex = ".*"
but that doesn't change anything