summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathan Reiner <nathan@nathanreiner.xyz>2026-08-28 16:25:28 +0200
committerNathan Reiner <nathan@nathanreiner.xyz>2026-08-28 16:25:28 +0200
commitdf52109ff18ff354e4c0d1b003bc1a0a42c42b54 (patch)
tree714119ccb9f2f2568968c447cfa5c67e4a17ed87
parent371308474ad0c6f01f64ab14166e32492a5f1c97 (diff)
use python3 instead of python
-rw-r--r--build.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.zig b/build.zig
index 9057c47..4962ea0 100644
--- a/build.zig
+++ b/build.zig
@@ -2,7 +2,7 @@ const std = @import("std");
fn pythonName(b: *std.Build) []const u8 {
const version = b.run(&.{
- "python",
+ "python3",
"-c",
"import sysconfig; print(sysconfig.get_config_var('LDVERSION'), end='')",
});