We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1efc32c commit cdcce80Copy full SHA for cdcce80
setup.py
@@ -11,7 +11,7 @@ def get_reqs_from_path(path):
11
content = Path(path).read_text()
12
13
# Do not include in all requirements if this special package is in there
14
- in_all = bool(re.match(r"^error-(.*)-not-available-yet$", content, re.MULTILINE))
+ in_all = re.search(r"^error-(.*)-not-available-yet$", content, re.MULTILINE) is None
15
return [
16
req for req in content.splitlines() if req and not req.startswith("#")
17
], in_all
0 commit comments