1
0
mirror of https://github.com/arsenetar/dupeguru.git synced 2026-01-22 14:41:39 +00:00

Drop Python 3.6 Support

This commit is contained in:
2022-03-15 05:09:58 -05:00
parent efc99eee96
commit b9dfeac2f3
8 changed files with 16 additions and 16 deletions

View File

@@ -150,8 +150,8 @@ def build_normal():
def main():
if sys.version_info < (3, 6):
sys.exit("Python < 3.6 is unsupported.")
if sys.version_info < (3, 7):
sys.exit("Python < 3.7 is unsupported.")
options = parse_args()
if options.clean and Path("build").exists():
shutil.rmtree("build")