Skip to content

Commit e62fa0c

Browse files
committed
wheels: product instead of target
1 parent 7e9faff commit e62fa0c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/wheels.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ jobs:
9090
CIBW_BEFORE_ALL: |
9191
if command -v dnf > /dev/null; then
9292
dnf install -y https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm
93+
dnf --enablerepo=powertools install -y libstdc++-static
9394
dnf install -y swift-lang
9495
fi
9596
CIBW_ENVIRONMENT: ""

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ let package = Package(
1212
// Dependencies declare other packages that this package depends on.
1313
.package(
1414
url: "https://github.com/apple/swift-collections.git", .upToNextMajor(from: "1.0.0")),
15-
.package(url: "https://github.com/pvieito/PythonKit", .exact("0.4.2")),
15+
.package(url: "https://github.com/pvieito/PythonKit", exact: "0.4.2"),
1616
.package(url: "https://github.com/donn/Defile.git", from: "5.2.1"),
1717
.package(url: "https://github.com/attaswift/BigInt.git", from: "5.2.1"),
1818
.package(url: "https://github.com/jpsim/Yams.git", from: "5.0.6"),

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,8 @@ def custom_build(self, bext: build_ext):
5151
"-c",
5252
"release",
5353
*(["--static-swift-stdlib"] * (platform.system() != "Darwin")),
54-
"--target",
54+
"--product",
5555
"fault",
56-
"--show-bin-path"
5756
]
5857
+ shlex.split(os.getenv("spmFlags", ""))
5958
+ self.args

0 commit comments

Comments
 (0)