aboutsummaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorLibravatar Mubashshir <ahm@jadupc.com>2023-08-03 17:34:01 +0600
committerLibravatar Mubashshir <ahm@jadupc.com>2023-08-03 17:43:33 +0600
commit4f18abfbef4d4bfc84864652a0e580f1f295e033 (patch)
tree3c77ecc6c692a8299c78bd704a52ef0e300a8dda /setup.py
parent6797ff836182c0727c71ee07e08bafc31f5b56e6 (diff)
downloadapturl-4f18abfbef4d4bfc84864652a0e580f1f295e033.tar.gz
apturl-4f18abfbef4d4bfc84864652a0e580f1f295e033.zip
Prune mint deps
Signed-off-by: Mubashshir <ahm@jadupc.com>
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 6919a6e..e92818f 100755
--- a/setup.py
+++ b/setup.py
@@ -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: