exclude unittest when using py2exe to build with py39

This commit is contained in:
2021-09-09 19:23:19 +08:00
parent 493af568b5
commit 630446d9ca

View File

@@ -18,7 +18,7 @@ if "py2exe" in sys.argv:
"py2exe": {
"optimize": 2,
"compressed": 1,
"excludes": ["pydoc"]
"excludes": ["pydoc", "unittest"]
}
},
"zipfile": None,