We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3809711 commit 8084572Copy full SHA for 8084572
build.py
@@ -5,6 +5,10 @@
5
package_type = os.environ.get("PACKAGE_TYPE", "onedir")
6
assert package_type in ("onedir", "onefile"), "PACKAGE_TYPE must be onedir or onefile"
7
8
+# upgrade dependencies manually
9
+if platform.system() == "Windows":
10
+ sp.check_call(["pip", "install", "--upgrade", "pywin32", "cffi"])
11
+
12
sep = ";" if platform.system() == "Windows" else ":"
13
14
args = [
0 commit comments