Skip to content

Commit ede3ff5

Browse files
committed
Attempt Three
1 parent 9895b5d commit ede3ff5

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

static/build_files/macos_intel/pyoxidizer.bzl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
def make_dist():
22
return default_python_distribution(
3-
python_version = "3.10",
4-
target_triple = "x86_64-apple-darwin"
3+
python_version = "3.10"
54
)
65

76
def make_packaging_policy(dist):

static/build_files/macos_silicon/pyoxidizer.bzl

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
def make_dist():
22
return default_python_distribution(
3-
python_version = "3.10",
4-
target_triple = "aarch64-apple-darwin"
3+
python_version = "3.10"
54
)
65

76
def make_resource_policy(dist):
87
res = dist.make_resource_location_policy()
9-
res.resources_location = "resources"
10-
11-
return res
8+
res.resources_location = "resources"
9+
10+
return res
1211

1312
def make_packaging_policy(dist):
1413
policy = dist.make_python_packaging_policy()
@@ -29,7 +28,7 @@ def make_client(dist, policy, res):
2928
client = dist.to_python_executable(
3029
name="hydrus_client",
3130
packaging_policy=policy,
32-
resources_policy=res,
31+
resources_policy=res,
3332
config=python_config,
3433
)
3534

0 commit comments

Comments
 (0)