Skip to content
Snippets Groups Projects
Commit 31553e71 authored by Stefano Rivera's avatar Stefano Rivera
Browse files

Correct logic for leaving SOURCES.txt when cleaning egg-info, it was inverted by mistake.

parent 1c24eb42
No related branches found
No related tags found
No related merge requests found
Pipeline #599601 passed
dh-python (6.20231026) UNRELEASED; urgency=medium
* Correct logic for leaving SOURCES.txt when cleaning egg-info, it was
inverted by mistake.
-- Stefano Rivera <stefanor@debian.org> Tue, 07 Nov 2023 15:34:47 +0200
dh-python (6.20231025) unstable; urgency=medium
* Align detection of nocheck with debhelper, thanks Victor Westerhuis.
......
......@@ -185,7 +185,7 @@ class Base:
dh = DebHelper(build_options())
# Plugins that rely on repository contents to build MANIFEST
clean_sources_txt = set(
clean_sources_txt = not set(
('python3-setuptools-scm', 'python3-setuptools-git')
).intersection(set(dh.build_depends))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment