diff options
author | 2023-08-03 17:34:01 +0600 | |
---|---|---|
committer | 2023-08-03 17:43:33 +0600 | |
commit | 4f18abfbef4d4bfc84864652a0e580f1f295e033 (patch) | |
tree | 3c77ecc6c692a8299c78bd704a52ef0e300a8dda /setup.py | |
parent | 6797ff836182c0727c71ee07e08bafc31f5b56e6 (diff) | |
download | apturl-4f18abfbef4d4bfc84864652a0e580f1f295e033.tar.gz apturl-4f18abfbef4d4bfc84864652a0e580f1f295e033.zip |
Prune mint deps
Signed-off-by: Mubashshir <ahm@jadupc.com>
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -11,7 +11,7 @@ changelog = "debian/changelog" if os.path.exists(changelog): with open(changelog, encoding='utf-8') as fp: head = fp.readline() - match = re.compile(".*\(([0-9.]+)\+linuxmint.+\).*").match(head) + match = re.compile(".*\(([0-9.]+)\+(linuxmint|shopno).+\).*").match(head) if match: version = match.group(1) with open("AptUrl/Version.py", "w") as fp: |