(line)
| 41 | print(f"Path does not exist: {reqfile}") |
| 42 | |
| 43 | def get_version(line): |
| 44 | req = line.split(";")[0].split("==")[1].split(".")[:5] |
| 45 | return tuple(int(s) for s in req) |
| 46 | |
| 47 | def parse_reqs(reqfile): |
| 48 | with open(reqfile) as f: |
no test coverage detected
searching dependent graphs…